N'Abend,
habe ein Problem mit Toren. Also wollte ma ein Tor bzw einen Lift einbauen. Nur leider klappt das net so ganz, weil im Script Errors und Warnings auftauchen. Vielleicht könnt ihr mir ja helfen.
Aus dem PWN Compiler:
C:\Users\Jens\Desktop\Grand Theft Auto 1\GTA San Andreas\gamemodes\test.pwn(154) : error 017: undefined symbol "xgate"
C:\Users\Jens\Desktop\Grand Theft Auto 1\GTA San Andreas\gamemodes\test.pwn(159) : error 017: undefined symbol "xgate"
C:\Users\Jens\Desktop\Grand Theft Auto 1\GTA San Andreas\gamemodes\test.pwn(166) : error 010: invalid function or declaration
C:\Users\Jens\Desktop\Grand Theft Auto 1\GTA San Andreas\gamemodes\test.pwn(168) : error 010: invalid function or declaration
C:\Users\Jens\Desktop\Grand Theft Auto 1\GTA San Andreas\gamemodes\test.pwn(174) : error 010: invalid function or declaration
C:\Users\Jens\Desktop\Grand Theft Auto 1\GTA San Andreas\gamemodes\test.pwn(180) : error 010: invalid function or declaration
C:\Users\Jens\Desktop\Grand Theft Auto 1\GTA San Andreas\gamemodes\test.pwn(269) : warning 203: symbol is never used: "cmd"
C:\Users\Jens\Desktop\Grand Theft Auto 1\GTA San Andreas\gamemodes\test.pwn(106) : warning 204: symbol is assigned a value that is never used: "lift"
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
6 Errors.
Dann die Zeilen aus dem Script, was alles etwas mit diesem Lift zu tun hat:
Bei den "new" ganz oben im Script:
new lift;
Dann der Lift, wo er bei public OnGameModeInit erstellt wird:
lift = CreateObject(971, 2306.1435546875, 2458.1452636719, 9.840250015288, 0.0000, 0.0000, 0.0000);
Hier die Commands, um den Lift zu bewegen:
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp("/up", cmdtext, true, 10) == 0)
{
MoveObject(xgate, 2306.1435546875, 2458.1452636719, 9.840250015288,3);
return 1;
}
if (strcmp("/down", cmdtext, true, 10) == 0)
{
MoveObject(xgate, 2306.1435546875, 2458.1452636719, 37.590251922607,3);
return 1;
}
return 0;
}