Object question
#1

Hello guys i need this thing:
I need in game object stremer, for example:
Player write command: /object and near him stick object...


and then him write /move than with move keys move object... somefing like this

and saving

Sorry my realy bad english but i need this for my gm
Reply
#2

Look in the filterscript section, there's a lot Ingame object editors.
Reply
#3

Код:
CMD:o(playerid,params[])
{
new Float:x,Float:y,Float:z,Float:a,Float:X,Float:y;
GetPlayerPos(playerid,x,y,z);
GetPlayerFacingAngle(playerid,a);
X = x + (-2 * floatsin(-a,degrees));
Y = y + (-2 * floatcos(-a,degrees));
CreateObject(16442,X,Y,z,0,0,0);
return 1;
}
i try somefing like this but fail
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)