Hallo liebe Brotfische!
Ich würde gern ein Paar bewegliche Objekte ins Script einbauen (Zielscheiben)....krieg das aber leider nicht hin
Ich möchte jeweils die Koordinaten X,Y&Z einzeln als random ins "MoveObject" integrieren... Ich hoffe, daß funzt und mir kann jemand helfen
Code
//randoms
new Randomscheibex[][] =
{
// Positionen, (x)
{743.9,-3959,39.2},
{740,-3959,39.2},
{735,-3959,39.2},
{730,-3959,39.2},
{725,-3959,39.2},
{720,-3959,39.2}
};
new Float:Randomscheibey[][] =
{
// Positionen, (y)
{-3959},
{-3965},
{-3970},
{-3975},
{-3950},
{-3978},
};
new Float:Randomscheibez[][] =
{
// Positionen, (z)
{39.2},
{39},
{38},
{38.5},
{37.5},
{37},
};
Alles anzeigen
Code
new scheibe1;
...etc
SetTimer("movescheibe",10000,false);
scheibe1 = CreateObject(1584,745.0999800,-3971.6001000,45.1000000,0.0000000,0.0000000,90.0000000); //
Code
forward movescheibe();
public movescheibe()
{
MoveObject(scheibe1,Randomscheibex,Randomscheibey,Randomscheibez,200);
Vielen Dank im Vorraus