Converting maps based on Incongnito's Streamer to SampSharp Written by: Florian van Dillen Define the array for this specific map (called "MapName"): [C#-code] new DynamicObject[] MapNameObjects; [/C#-code] Use the following as a custom output format on http://www.convertffs.com/: var MapNameObjects[{id}] = new DynamicObject({model}, new Vector3({x}, {y}, {z})); obj.Move(obj.Position, obj.Rotation + new Vector3({rx}, {ry}, {rz})); // Object ID: {id} In the custom output format, make sure the MapNameObjects has the same name as the array you just created. The output of convertfss.com should be pasted under the array you just created. ** Example input: ** [Pawn-code] CreateDynamicObject(1682, 151.22223, -14.46257, 16.90613, 0.00000, 0.00000, -148.67996); [/Pawn-code] ** Example output: ** [C#-code] var MapNameObjects[0] = new DynamicObject(1682, new Vector3(151.2222300, -14.4625700, 16.9061300)); obj.Move(obj.Position, obj.Rotation + new Vector3(0.0000000, 0.0000000, -148.6799600)); // Object ID: 0 [/C#-code]