Hallo Leute ich hab in der Sufu nichts gefunden.
Wie kann ich mit einem Befehl, mehrere Objects gleichzeitig bewegen?
Ist das möglich? Wenn ja wie?
Hab das imo so:
new bot1;
new bot2;
new bot3;
new bot4;
new bot5;
new bot6;
bot1 = CreateStreamObject(2905, 1367.633301, -1646.804077, 12.749265, 268.8997, 4.2972, 0.0000, 500);
bot2 = CreateStreamObject(2905, 1367.603638, -1646.623413, 12.749257, 268.0403, 1.7189, 359.1406, 500);
bot3 = CreateStreamObject(2907, 1367.653687, -1646.746338, 13.457369, 268.0403, 0.0000, 99.6947, 500);
bot4 = CreateStreamObject(2908, 1367.586670, -1646.716187, 13.999578, 265.4620, 0.0000, 0.0000, 500);
bot5 = CreateStreamObject(2906, 1367.648682, -1646.936768, 13.481810, 265.4620, 283.5102, 270.6186, 500);
bot6 = CreateStreamObject(2906, 1367.446411, -1646.563477, 13.656837, 351.4057, 2.6822, 85.0839, 500);
if (strcmp(cmdtext, "/bot", true)==0) // Befehl zum Öffnen
{
MoveObject(bot1,1363.7631,-1646.9940,13.3828,4); // Die Kords, wo das tor sein soll wenns offen ist
MoveObject(bot2,1363.7631,-1646.9940,13.3828,4);
MoveObject(bot3,1363.7631,-1646.9940,13.3828,4);
MoveObject(bot4,1363.7631,-1646.9940,13.3828,4);
MoveObject(bot5,1363.7631,-1646.9940,13.3828,4);
MoveObject(bot6,1363.7631,-1646.9940,13.3828,4);
return 1;
}
if (strcmp(cmdtext, "/bbot", true)==0)
{
MoveObject(bot1,1367.446411, -1646.563477, 13.656837,4); // Die Kords, wo das tor sein soll wenns zu ist
MoveObject(bot2,1367.446411, -1646.563477, 13.656837,4);
MoveObject(bot3,1367.446411, -1646.563477, 13.656837,4);
MoveObject(bot4,1367.446411, -1646.563477, 13.656837,4);
MoveObject(bot5,1367.446411, -1646.563477, 13.656837,4);
MoveObject(bot6,1367.446411, -1646.563477, 13.656837,4);
return 1;
}
Aber es funktioniert nicht...