04.01.2011, 12:42
at OnGameModeInit
AddPlayerClass(skin, xcoord, ycoord, zcoord, acoord, weapon1, ammo1, weapon2, ammo2, weapon3, ammo3);
for the enter command -> at OnPlayerCommandText
I hope that helped lol
AddPlayerClass(skin, xcoord, ycoord, zcoord, acoord, weapon1, ammo1, weapon2, ammo2, weapon3, ammo3);
for the enter command -> at OnPlayerCommandText
pawn Код:
if(strcmp("/enter", cmdtext, true, 6) == 0){
SetPlayerInterior(playerid, 1); //replace with your interior id
return 1;
}