[Ajuda] Morreu/Matou
#1

Olб galera boa tarde, gostaria de saber porque estб dando esse erro, e como soluciona-lo:

Код:
public infing(playerid)
{
    new str[128];
	format(str, 128, "~b~~h~~h~Level: ~w~%d ~b~~h~~h~Morreu: ~w~%d ~b~~h~~h~Matou: ~w~%d", PlayerInfo[playerid][Level], PlayerInfo[playerid][Morreu], PlayerInfo[playerid][Matou]);
	return TextDrawSetString(Text:TextLevel, Text:TextMorreu, Text:TextMatou, str);
}
error 035: argument type mismatch (argument 2) Na linha 99
Reply
#2

Vocк colocou 4 parвmetros onde sу pode 2.
@edit

Nгo hб necessidade de colocar Text junto a funзгo, pois isso jб foi declarado na variбvel. (nгo estб errado, sу й desnecessбrio)
Reply
#3

Putz, sу pode usar 2 parвmetros? Preciso exibir as trкs textdraws
Nгo teria alguma forma de arrumar isso?
Reply
#4

Tenta isso
PHP код:
public infing(playerid)
{
    new 
str[128];
    
format(str128"~b~~h~~h~Level: ~w~%d"PlayerInfo[playerid][Level]);
    
TextDrawSetString(TextLevelstr);
    
format(str128"~b~~h~~h~Morreu: ~w~%d"PlayerInfo[playerid][Morreu])
    
TextDrawSetString(TextMorreustr);
    
format(str128"~b~~h~~h~Matou: ~w~%d"PlayerInfo[playerid][Matou]);
    
TextDrawSetString(TextMatoustr);
    return 
1;

Reply
#5

Код:
	format(str, 128, "~b~~h~~h~Level: ~w~%d ", PlayerInfo[playerid][Level]);
	TextDrawSetString(Text:TextLevel str);
	format(str, 128, "~b~~h~~h~Morreu: ~w~%d ", PlayerInfo[playerid][Morreu]);
	TextDrawSetString(Text:TextMorreu, str);
	format(str, 128, "~b~~h~~h~Matou: ~w~%d ", PlayerInfo[playerid][Matou]);
	TextDrawSetString(Text:TextMatou, str);
P.S: Nгo hб necessidade de retornar a funзгo, pois no momento que a callback for chamada suas funзхes tambйm serгo...
Reply
#6

Valeu!
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)