12.03.2014, 21:41
Quote:
I know, i got the textdraw ready but how can i do so the player like a chastity belt if he choose #3 ?
|
pawn Код:
public OnPlayerText(playerid, text[])
{
if(ShowingTextdraw[playerid] == true)
{
if(strval(text) == 1)
{
//your actions
return 0; //return to 0 always
}
if(strval(text) == 2)
{
//your actions
return 0;
}
if(strval(text) == 3)
{
//your actions
return 0;
}
}
return 1;
}