Originally Posted by Studio
If i have
CreateObject(980,-2433.378,496.277,31.834,0.0,0.0,203.359)
and i want to move it like
Quote:
Originally Posted by PAWNO
if(strcmp(cmdtext, "/Btgmwsup", true) ==0)
{
MoveObject(GateBTG, -4136.039551, -1669.828979, 6.540470, 3);
SendClientMessage(playerid, COLOR_GREEN, "You have opened to BTG 'n' MW base /Btgmwsupclose to close the gate!");
return 1;
}
if(strcmp(cmdtext, "/Btgmwsupclose", true) ==0)
{
MoveObject(GateBTG, -4136.039551, -1669.828979, 11.540470, 3);
SendClientMessage(playerid, COLOR_GREEN, "You have closed the BTG 'N' MW base gate");
return 1;
}
|
How do i change the move like
Код:
-4136.039551, -1669.828979, 6.540470, 3
and
Код:
-4136.039551, -1669.828979, 11.540470, 3
Is there any way Changing the position of moving please HELP!
|