27.08.2013, 17:30
This is actually very simple:
Calculate where you want the new map and replace CreateObject/CreateDynamicObject with CreateMovedObject. I used this to move a map with 400 objects from one location to another.
pawn Код:
stock CreateMovedObject(id, Float:x, Float:y, Float:z, Float:rx, Float:ry, Float:rz)
{
CreateDynamicObject(id, x+1337, y+1337, z, rx, ry, rz);
}