Bekomme Errors beim Textdraws
Zeile (280) : Falscher Variablentyp als Parameter (Parameter #1)
Zeile (280) : Falscher Variablentyp als Parameter (Parameter #1)
Zeile (281) : Falscher Variablentyp als Parameter (Parameter #3)
Zeile (283) : Falscher Variablentyp als Parameter (Parameter #1)
Zeile (283) : Falscher Variablentyp als Parameter (Parameter #1)
Zeile (284) : Falscher Variablentyp als Parameter (Parameter #3)
Zeile (286) : Falscher Variablentyp als Parameter (Parameter #1)
Zeile (286) : Falscher Variablentyp als Parameter (Parameter #1)
Zeile (287) : Falscher Variablentyp als Parameter (Parameter #3)
Zeile (273) : Variable wird nie benutzt: "string3"
Zeile (273) : Variable wird nie benutzt: "string2"
Zeile (273) : Variable wird nie benutzt: "string1"
9 Errors, 3 Warnungen
Du hast Errors im Skript. Kompilierung abgebrochen
PWNMod Compiler Version 1.2
(c) Trooper[Y]
In Kooperation mit GTA-Servers.de
public OnPlayerSpawn(playerid)
{
new string1, string2, string3;
new Exp = GetPVarInt(playerid,"EXP");
new Geld = GetPVarInt(playerid,"Geld");
new PayTime = GetPVarInt(playerid,"PayTime");
StopAudioStreamForPlayer(playerid);
Stats = TextDrawCreate(33.000000,215.000000,"~g~Deine Statistik");
TextDrawShowForPlayer(playerid,Stats);
format(string1,sizeof(string1), "~b~EXP~w~:%i.",Exp);
EXP = TextDrawCreate(33.000000,238.000000,string1);
TextDrawShowForPlayer(playerid,EXP);
format(string1,sizeof(string1), "~g~Geld~w~:%i.",Geld);
GELD = TextDrawCreate(31.000000,251.000000,string2);
TextDrawShowForPlayer(playerid,GELD);
format(string1,sizeof(string1), "~r~PayDay~n~: %i .",PayTime);
PAYDAY = TextDrawCreate(31.000000,269.000000,string3 );
TextDrawShowForPlayer(playerid,PAYDAY);
return 1;
}