10.12.2010, 18:20
Hey, can I like kick my NPC with a timer? and let it come back with a timer
if yes, please tell me how...
if yes, please tell me how...
Yes, it can be done,
as I did it for a AirStrike in my San Andreas War v1 and v.2 But I forget how I did it... I remember I had to use, /airstrike which would connect the NPC, and the timer, would KickPlayer(NPCName); Try Searching for it. |
for(new i; i = 0; i++)
{
new name;//maybe new name[MAX_PLAYER_NAME];
GetPlayerName(i,name,MAX_PLAYER_NAME);
If(name == "Your Npc Name")
{
Kick(i);
}
}