18.01.2012, 14:31
you need a cars' system
and about lvl 10
and about lvl 10
pawn Код:
enum pooInfo
{
pLevel,
};
new PlayerInfo[MAX_PLAYERS][pooInfo];
public OnPlayerCommandText(playerid, cmdtext[])
{
if(strcmp(cmd, "/buy", true) == 0)
{
if(PlayerInfo[playerid][pLevel] =>5 && PlayerInfo[playerid][pLevel] <=9)
{
balabla
}
else if(PlayerInfo[playerid][pLevel] =>10)
{
balbal
}
return 1;
}
return 0;
}