who could help me .. to make the spawns code the script.. 
I would like to create a modloader with the .sprx file
I found it as a clue to the source of the menu ArabicGuy
			
			
			
			
	 	I would like to create a modloader with the .sprx file
I found it as a clue to the source of the menu ArabicGuy
Code:
if(!IsScriptActived("ArabicGuy"))
            {
                REQUEST_SCRIPT("ArabicGuy");
                int tick = 0;
                while(!HAS_SCRIPT_LOADED("ArabicGuy"))
                {
                    tick++;
                    REQUEST_SCRIPT("ArabicGuy");
                    if(tick >= 500)
                    {
                    print("~r~Error", 2000);
                    break;
                    }
                    WAIT(0);
                }
                START_NEW_SCRIPT("ArabicGuy",6304);//stack size
                SET_SCRIPT_AS_NO_LONGER_NEEDED("ArabicGuy");
            }
            else
            {
                TERMINATE_ALL_SCRIPTS_WITH_THIS_NAME("ArabicGuy");
            } 

 




