[Ajuda] Textdraw nгo aparece
#5

Quote:
Originally Posted by IgorLuiz
Посмотреть сообщение
Acho que nгo й necessбrio uma filterscript, pode colocar em seu GM... vamos lб

Defina a text draw no topo do seu GM.

PHP код:
new PlayerText:TextPatente[MAX_PLAYERS]; 
Coloque na "public OnPlayerConnect"
PHP код:
    TextPatente[playerid] = CreatePlayerTextDraw(playerid40.000000,322.000000"_");
    
PlayerTextDrawAlignment(playeridTextPatente[playerid],0);
    
PlayerTextDrawBackgroundColor(playeridTextPatente[playerid],0x000000ff);
    
PlayerTextDrawFont(playeridTextPatente[playerid],2);
    
PlayerTextDrawLetterSize(playeridTextPatente[playerid],0.199999,1.500000);
    
PlayerTextDrawColor(playeridTextPatente[playerid],0x00ff00ff);
    
PlayerTextDrawSetProportional(playeridTextPatente[playerid],1);
    
PlayerTextDrawSetShadow(playeridTextPatente[playerid],1);
    
PlayerTextDrawSetOutline(playeridTextPatente[playerid], 1); 
Agora adicione na "public OnPlayerSpawn(playerid)"

PHP код:
    new str[50];
    if(
GetPlayerScore(playerid) >= 10)
    {
        
format(strsizeof(str), "~g~Patente: ~w~Novato");
        
PlayerTextDrawSetString(playeridTextPatente[playerid], str);
    }
    if(
GetPlayerScore(playerid) >= 300)
    {
        
format(strsizeof(str), "~g~Patente: ~w~mediano");
        
PlayerTextDrawSetString(playeridTextPatente[playerid], str);
    }
    if(
GetPlayerScore(playerid) >= 600)
    {
        
format(strsizeof(str), "~g~Patente: ~w~amador");
        
PlayerTextDrawSetString(playeridTextPatente[playerid], str);
    }
    if(
GetPlayerScore(playerid) >= 1000)
    {
        
format(strsizeof(str), "~g~Patente: ~w~master");
        
PlayerTextDrawSetString(playeridTextPatente[playerid], str);
    }
    
PlayerTextDrawShow(playeridPlayerText:TextPatente[playerid]); 
certo mano eu coloquei na gm, deu certo, so que quando eu entro no jogo nao aparece o textdraw com os nivel de patente, voce sabe o porque ?
Reply


Messages In This Thread
Textdraw nгo aparece - by maxblaya01 - 29.07.2015, 00:48
Re: ME AJUDA AQUI - by LockedLucas - 29.07.2015, 00:51
Re: ME AJUDA AQUI - by Dayvison_ - 29.07.2015, 01:10
Re: ME AJUDA AQUI - by IgorLuiz - 29.07.2015, 02:02
Re: ME AJUDA AQUI - by maxblaya01 - 29.07.2015, 04:34
Re: ME AJUDA AQUI - by IgorLuiz - 29.07.2015, 04:51
Re: ME AJUDA AQUI - by maxblaya01 - 29.07.2015, 04:56
Re: ME AJUDA AQUI - by IgorLuiz - 29.07.2015, 05:29
Re: ME AJUDA AQUI - by maxblaya01 - 29.07.2015, 05:44
Re: ME AJUDA AQUI - by maxblaya01 - 29.07.2015, 15:42

Forum Jump:


Users browsing this thread: 1 Guest(s)