Nabend..
ich scheiter grade an einem befehl (Tor).
nur ich habe da ein problem mit den Bool:
new bool:fnsbool; //oben im script
new fnstor; //auch oben
fnstor = CreateDynamicObject( ... ); //OnGameModeInit
ocmd:tor(playerid,params[])
{
if(IsPlayerInRangeOfPoint(playerid,10,x,y,z))
{
if(fnsbool == 0) <<< 1
{
BlaBla
fnsbool = 1; <<< 2
}
else if(fnsbool == 1) <<< 3
{
BlaBla
fnsbool = 0; <<< 4
}
}
return 1;
}
Errors:
C:\Users\Gamer\Desktop\Grand Theft Auto San Andreas\ReadMe\Script\pawno\Untitled.pwn(1778) : warning 213: tag mismatch
C:\Users\Gamer\Desktop\Grand Theft Auto San Andreas\ReadMe\Script\pawno\Untitled.pwn(1782) : warning 213: tag mismatch
C:\Users\Gamer\Desktop\Grand Theft Auto San Andreas\ReadMe\Script\pawno\Untitled.pwn(1784) : warning 213: tag mismatch
C:\Users\Gamer\Desktop\Grand Theft Auto San Andreas\ReadMe\Script\pawno\Untitled.pwn(1788) : warning 213: tag mismatch
...
der befehl ist selbstverständlich bearbeitet damit ihr es leichter habt zu sehen, was dort flasch ist