3D Text Label help!
#1

Hello everyone,

I have started a gamemode recently, but I'm having a small problem with the 3D Text.
If you /switchteam it will keep the previous 3D text although I have tried Update3DTextLabelText and also Delete3DTextLabel on player death.

OnPlayerSpawn I have this:

PHP код:
public OnPlayerSpawn(playerid)
{
     
SetPlayerVirtualWorld(playerid0);
    switch( 
GetPlayerTeamplayerid ) )
    {
        case 
TEAM_ONE:
        {
            
            
SetPlayerArmour(playerid99.0);
            
SendClientMessageplayeridTEAM_RED_COLOR"You are now playing in the Red Team." );
            
label7[playerid] = Create3DTextLabel("RED TEAM PLAYER",TEAM_RED_COLOR30.040.050.040.00);
            
Attach3DTextLabelToPlayer(label7[playerid], playerid0.00.00.4);
             }
             
        case 
TEAM_TWO:
        {
            
              
SetPlayerArmour(playerid99.0);
              
SendClientMessageplayeridTEAM_BLUE_COLOR"You are now playing in the Blue Team." );
              
label7[playerid] = Create3DTextLabel("BLUE TEAM PLAYER",TEAM_BLUE_COLOR30.040.050.040.00);
              
Attach3DTextLabelToPlayer(label7[playerid], playerid0.00.00.4);
        }
        case 
TEAM_THREE:
         {
        
              
SetPlayerArmour(playerid99.0);
              
SendClientMessageplayeridTEAM_GREEN_COLOR"You are now playing in the Green Team." );
              
label7[playerid] = Create3DTextLabel("GREEN TEAM PLAYER",TEAM_GREEN_COLOR30.040.0,50.0,40.00);
              
Attach3DTextLabelToPlayer(label7[playerid], playerid0.00.00.4);
        }
        
    }
    return 
true;

How can I make it that if you /switchteam it will delete the previous text?
Would be great if someone helps me
Reply


Messages In This Thread
3D Text Label help! - by JimmyCh - 22.06.2013, 07:09
Re: 3D Text Label help! - by SMW - 22.06.2013, 10:03
Re: 3D Text Label help! - by JimmyCh - 22.06.2013, 10:56
Re: 3D Text Label help! - by SMW - 22.06.2013, 13:25
Re: 3D Text Label help! - by JimmyCh - 22.06.2013, 15:50
Re: 3D Text Label help! - by SMW - 22.06.2013, 16:34
Re: 3D Text Label help! - by JimmyCh - 22.06.2013, 18:32
Re: 3D Text Label help! - by JimmyCh - 23.06.2013, 22:48
Re: 3D Text Label help! - by Coz - 20.07.2013, 19:54

Forum Jump:


Users browsing this thread: 3 Guest(s)