04.09.2012, 17:43
Thanks guy's for all the positive feed back. I now don't work on this filterscript but might think about releasing the final verison to all of you.
The final system allows players to have and plant unlimited furniture in there house and it allows them to move the furniture around with something like this:
Thats just example of the code, I basicly stole it from this filterscript and remade my whole furniture system from it http://forum.sa-mp.com/showthread.ph...14#post1974714. If I do decide to release my new furniture system then you will have to remove you'r house system seen as it has a built in house system off /createhouse and things so it allows players to only create objects in there house.
Well thank you.
The final system allows players to have and plant unlimited furniture in there house and it allows them to move the furniture around with something like this:
pawn Код:
public OnPlayerEditObject(playerid, playerobject, objectid, response, Float:fX, Float:fY, Float:fZ, Float:fRotX, Float:fRotY, Float:fRotZ)
{
new Float:oldX, Float:oldY, Float:oldZ,
Float:oldRotX, Float:oldRotY, Float:oldRotZ;
GetObjectPos(objectid, oldX, oldY, oldZ);
GetObjectRot(objectid, oldRotX, oldRotY, oldRotZ);
if(!playerobject) // If this is a global object, move it for other players
{
if(!IsValidObject(objectid)) return;
MoveObject(objectid, fX, fY, fZ, 10.0, fRotX, fRotY, fRotZ);
}
if(response == EDIT_RESPONSE_FINAL)
{
// The player clicked on the save icon
// Do anything here to save the updated object position (and rotation)
}
if(response == EDIT_RESPONSE_CANCEL)
{
//The player cancelled, so put the object back to it's old position
if(!playerobject) //Object is not a playerobject
{
SetObjectPos(objectid, oldX, oldY, oldZ);
SetObjectRot(objectid, oldRotX, oldRotY, oldRotZ);
}
else
{
SetPlayerObjectPos(playerid, objectid, oldX, oldY, oldZ);
SetPlayerObjectRot(playerid, objectid, oldRotX, oldRotY, oldRotZ);
}
}
}
Well thank you.