18.09.2018, 23:01
PHP код:
if(Player[playerid][PhoneStatus] == 0)
{
new string[50];
format(string, sizeof(string), "Phone Status: ~r~OFF");
TextDrawSetString(yourtextdraw, string); // Change "yourtextdraw" to how you defined your phone textdraw
}
else
{
new string[50];
format(string, sizeof(string), "Phone Status: ~g~ON");
TextDrawSetString(textdraw, string); // Change "yourtextdraw" to how you defined your phone textdraw
}

