08.08.2011, 10:52
Quote:
try to replace the dialog id with his realname not with his number...
|
![Picard](images/smilies/picard2.png)
Create Account variable like AccInfo[playerid][Rules]. Then do
PHP код:
if(AccInfo[playerid][Rules] == 0)
{
//here give money and score
AccInfo[playerid][Rules] = 1;//Here we set that player has read the rules
return 0;
}
if(AccInfo[playerid][Rules] == 1)
{
//what ever you want if they have already read rules
return 1;
}