15.06.2013, 23:09
Thanks Pooh7 it compiled me perfect , but i have a question :
I need to the bots spawn but i can't find any code like RNPC_Spawn or something like that ..
Code:
public OnGameModeInit()
{
new Name[24];
for( new i = 0; i < 5; i++ )
{
format(Name, 24, "NPC_%d", i);
NPC_ID[i] = (ConnectRNPC(Name), i);
printf("NPC IDs: %d", NPC_ID[i]);
}
return 1;
}

