20.03.2009, 21:17
Hi, i'm trying to make my script work so that players can't enter the casino. I don't get any errors, but still it doesn't work.. What's wrong with this?
PS: As you might noticed, i'm quite new to this.
Код:
forward casino(playerid);
public casino(playerid)
{
if((GetPlayerInterior(playerid) == 10))
{
SetPlayerInterior(playerid, 0);
SetPlayerPos(playerid, 2048.8167,1002.0261,10.6719);
}
return 1;
}

