21.05.2014, 13:22
Quote:
|
Works great but i am using the topid's name in a string for eg. TextDrawSetString(topper, TopidName);
The problem is that it sets the string to " " but how can i make it like when there is no topid it sets the string to "None"? |
pawn Код:
if(topid == -1)
{
TextDrawSetString(topper, "None");
}


