06.06.2010, 08:02
You need toshow the code for the NPC
Btw if you want the player to login before they can actually spawn, do something like this:
At top of script:
Then under your login code:
Then Under OnPlayerRequestSpawn
Btw if you want the player to login before they can actually spawn, do something like this:At top of script:
Код:
IsLoggedIn[MAX_PLAYERS];
Код:
IsLoggedIn[playerid]=1;
Код:
If(IsLoggedIn[playerd]==0)
{
SendClientMessage(playerid,0xffffffaa,"YOu need to Log In before you can spawn.");
return 0;
}

