10.06.2014, 14:59
Hello I want to make a command when player types /house a house will appear next to him. I use CMD.
new Float:x,Float:y,Float:z
CMD:house(playerid,params[])
{
new Float:x,Float:y,Float:z;
GetPlayerPos(playerid,x,y,z);
CreateObject(19499, x+10, y+10, z+0.1, 0.0, 0.0, 96.0,250.0);
return 1;
}
Rep