12.02.2013, 00:17
You may ask, I thought maybe it can't load same files for every npc, and that's why I made 40 of them
, but if I may not have space, how does first NPC connects and spawns?
EDIT:
still just adding one NPC
, but if I may not have space, how does first NPC connects and spawns?EDIT:
pawn Код:
public AddNPC(slot){
if(slot == 42) return true;
new name[24];
format(name, sizeof(name), "NPC%d", slot);
ConnectNPC(name, "npcidle");
slot++;
SetTimerEx("AddNPC", 3000, false, "d", slot);
return true;
}

