So hallo Liebe Community
Ich versuche schon stundenlang Tore zu erstellen aber es gelingt mir nicht
ja habe schon die 2 Objecte eins für offenes und eins für geschlossenes Tor!
hier die 2 Tore:
CreateObject(969, 829.21801757813, -867.75640869141, 67.926902770996, 0, 0, 19.849853515625); (geschlossene Tor)
CreateObject(969, 822.79272460938, -870.40386962891, 67.8251953125, 0, 0, 19.849853515625); (offene Tor)
Ich gebe das bei news ein:
new Gate;
dann bei OnGameModInit:
Gate = CreateObject(969, 829.21801757813, -867.75640869141, 67.926902770996, 0, 0, 19.849853515625);
dann bei OnPlayerCommandText:
if (strcmp(cmd, " /auf", true)==0) // Befehl zum Öffnen
{
MoveObject(Gate,822.79272460938, -870.40386962891, 67.8251953125,4); // Die Kords, wo das tor sein soll wenns offen ist. Entnimmst du aus dem zweiten CreateObject des Compilers
return 1;
}
if (strcmp(cmd, " /zu", true)==0)
{
MoveObject(Gate,829.21801757813, -867.75640869141, 67.926902770996,4); // Die Kords, wo das tor sein soll wenns zu ist.Entnimmst du aus dem ersten CreateObject des Compilers
return 1;
So dann drück ich auf Compiler dann kommt das:
C:\Users\Vitali\Desktop\Big City Life Reallife 0.3 Beta 0.3\gamemodes\GTAWorld.pwn(13959) : warning 217: loose indentation
C:\Users\Vitali\Desktop\Big City Life Reallife 0.3 Beta 0.3\gamemodes\GTAWorld.pwn(16800) : error 010: invalid function or declaration
C:\Users\Vitali\Desktop\Big City Life Reallife 0.3 Beta 0.3\gamemodes\GTAWorld.pwn(16803) : error 010: invalid function or declaration
C:\Users\Vitali\Desktop\Big City Life Reallife 0.3 Beta 0.3\gamemodes\GTAWorld.pwn(16805) : error 010: invalid function or declaration
C:\Users\Vitali\Desktop\Big City Life Reallife 0.3 Beta 0.3\gamemodes\GTAWorld.pwn(16808) : error 010: invalid function or declaration
C:\Users\Vitali\Desktop\Big City Life Reallife 0.3 Beta 0.3\gamemodes\GTAWorld.pwn(13693) : warning 204: symbol is assigned a value that is never used: "Gate
hoffe es kann mir einer helfen
Danke !!!