Error:
C:\Users\Admin\Desktop\samp03x_svr_win32\gamemodes\GSRSelfmade.pwn(1019) : error 010: invalid function or declaration
C:\Users\Admin\Desktop\samp03x_svr_win32\gamemodes\GSRSelfmade.pwn(1020) : warning 235: public function lacks forward declaration (symbol "torp")
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
1 Error.
Könnt ihr mir weiter helfen? wäre echt nett
New:
new hitmantor;
new lspdtor1;
Befehl:
}
if(strcmp(cmdtext,"/htor",true)==0)
{
if(IstSpielerInFraktion(playerid,6))
{
SendClientMessage(playerid,GELB,"Das Tor hat sich geöffnet es wird sich automatisch in 10Sek schliesen!");
MoveObject(hitmantor,-2127.5, -80.9, 27.1,3.0);
SetTimer("torh",10000,false);
return 1;
}
else
{
SendClientMessage(playerid,ROT,"Du bist kein Hitman.");
return 1;
}
}
if(strcmp(cmdtext,"/lspdtor1",true)==0)
{
if(IstSpielerInFraktion(playerid,1))
{
SendClientMessage(playerid,GELB,"Das Tor hat sich geöffnet es wird sich automatisch in 10Sek schliesen!");
MoveObject(lspdtor1,1539.80005, -1627.69995, 05.2,3.0);
SetTimer("torp",10000,false);
return 1;
}
else
{
SendClientMessage(playerid,ROT,"Du bist kein LSPD Beamter.");
return 1;
}
}
return 0;
}
forward an public:
forward torh();
public torh()
{
MoveObject(hitmantor,-2127.5, -80.9, 37.1,2.0);
}
forwar torp();
public torp()
{
MoveObject(lspdtor1,1539.80005, -1627.69995, 15.2,3.0);
}