12.03.2011, 09:14
"(Oh, more less Gentlemen)" Where's the equality?
Firstly, TextDrawDestroy(web); should be under OnGameModeExit() callback.
Secondly, TextDrawShowForAll(web); won't show for anyone, since it's under OnGameModeInit() which is called when a gamemode starts - there's no-one online at that time.
Add TextDrawShowForPlayer(playerid, web); under OnPlayerConnect().
I didn't enter too deep into your code.. The rest is in your hands..
Firstly, TextDrawDestroy(web); should be under OnGameModeExit() callback.
Secondly, TextDrawShowForAll(web); won't show for anyone, since it's under OnGameModeInit() which is called when a gamemode starts - there's no-one online at that time.
Add TextDrawShowForPlayer(playerid, web); under OnPlayerConnect().
I didn't enter too deep into your code.. The rest is in your hands..