06.11.2010, 06:00
How to use gvar to store a tag:variable without compiler warning 213: tag mismatch.
eg:
It does work, but with warning 213 given.
eg:
Код:
public OnGameModeInit(){ SetGVarInt("textdraw_gamemode",TextDrawCreate(bla...)); return true; } public OnPlayerConnect(playerid){ TextDrawShowForPlayer(playerid,GetGVarInt("textdraw_gamemode")); return true; }