Hallo zusammen, ich habe folgendes Problem: ich möchte ein Objekt bewegen können z.B. ein Tor für eine garage einfügen und das mit nem Befehl wie /open aufmachen kann. ich hab das hier gefunden doch weiß nicht wie es genau funktionieren soll:
Code
new obj; // Somewhere at the top of your script
public OnGameModeInit()
{
obj = CreateObject(980, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0);
return 1;
}
public OnPlayerCommandText(playerid, cmdtext[])
{
if(strcmp(cmdtext, "/moveobject", true) == 0)
{
new string[50];
new movetime = MoveObject(obj, 0, 0, 10, 2.00);
format(string, sizeof(string), "Object will finish moving in %d milliseconds", movetime);
SendClientMessage(playerid, 0xFF000000, string);
return 1;
}
return 0;
}
Alles anzeigen
sagen wir jetzt mal ich hab ein objekt mit der ID 15 und die koordinaten wären x :1 ,y :2 ,z :3 und es muss auf die position x:1, y:3, z:4
ich hoffe mir kann jemand helfen