Too many errors.
#3

You are mixing up playertextdraws with global textdraws
PHP код:
loginbox[playerid] = TextDrawCreate(playerid412.000000314.750000"usebox");
    
TextDrawShowForPlayer(playeridloginbox); 
first of all there is nothing called loginbox, you have a loginbox[playerid] so if you want to show that you should fix those names
second of all if you are making a textdraw unique for players you should use playertextdraws
PHP код:
loginbox[playerid] = CreatePlayerTextDraw(playerid412.000000314.750000"usebox")
PlayerTextDrawShow(playeridloginbox[playerid]); 
or if you are gonna stay with your global textdraws you should make them like this
PHP код:
loginbox[playerid] = TextDrawCreate(412.000000314.750000"usebox");
    
TextDrawShowForPlayer(playeridloginbox[playerid]); 
fix all of your code according to these ^^
Reply


Messages In This Thread
Too many errors. - by MinDex - 30.09.2015, 12:28
Re: Too many errors. - by MinDex - 30.09.2015, 14:07
Re: Too many errors. - by PrO.GameR - 30.09.2015, 14:15

Forum Jump:


Users browsing this thread: 1 Guest(s)