03.11.2012, 01:56
Add this into your script.
For the errors relating to random:
PAWN is case-sensitive. The correct way to get a random number between 1 and 100 is this:
pawn Код:
stock GetPlayerNameEx(playerid)
{
new pname[MAX_PLAYER_NAME];
GetPlayerName(playerid, pname, sizeof(pname));
return pname;
}
PAWN is case-sensitive. The correct way to get a random number between 1 and 100 is this:
pawn Код:
random(1 - 100);