Wenn ich mein Script compile kommt das:
C:\Users\kev\Desktop\test\gamemodes\Dini.pwn(465) : error 017: undefined symbol "Supportermobil"
C:\Users\kev\Desktop\test\gamemodes\Dini.pwn(466) : error 017: undefined symbol "Supportermobil"
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
2 Errors.
Scriptzeilen:
if(dialogid == DIALOG_SUPCAR)
if(listitem == 0)
{
new Float:x,Float:y,Float:z,Float:a,Supcar;
GetPlayerPos(playerid,x,y,z);
Supcar=AddStaticVehicle(560,x,y,z,a,0,1);
PutPlayerInVehicle(playerid,Supcar,0);
SetVehicleNumberPlate(Supcar,"Supmobil");
new supcar[128];
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid,name,sizeof(name));
format(supcar, sizeof(supcar),"SupportMobil von %s.",name);
Supportermobil=Create3DTextLabel( supcar,0xFF8C00FF,0.0,0.0,0.0,50.0,0,4);
Attach3DTextLabelToVehicle(Supportermobil,supcar,0.0,0.0,0.2);