[Include] [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!)
#1

_Fallout's Object Streamer v1.2:____________________________________________



_How the streamer works:____________________________________________
This is a very fast streamer that loads the closest 800 objects (can be changed), only when the objects are in range of the player's view.
It only updates if the player is moving, because objects shouldn't be updated if the player isn't moving right?

The streamer has been tested with 100.000 objects without problems (tested on samp 0.3d).
The limit is higher, but it has not been tested yet, because I think nobody has more then 100.000 objects?

You can see how it works in the video below.


_Features:____________________________________________
- Instant update when teleporting players using SetPlayerPos (they won't fall trough objects).
- When using PlayerObjects, you can still use all the normal functions on that object. There are no separate PlayerObject versions of each function.
- Easy to implement in your gamemode/filterscript.
- Vehicles don't fall trough the ground.
- Fast object streaming.


_Converters:____________________________________________
- ConvertFFS
- CodeGenerators
-
Please suggest links for other converters

_Configuration of the streamer:____________________________________________
Code:
#define F_MAX_OBJECTS           2500    //maximum amount of objects the streamer will create; PLEASE change this to the amount of objects you are using.
#define UpdateTime              1000    //update time in ms (milliseconds). A lower value means faster updating.
#define ObjectsToStream         500     //maximum number of objects that will be streamed for one player. (maximum = 1000 objects in 0.3e)
#define StreamRange             500.0   //the player's object view range, doesn't need to be changed because objects already fade at 300 distance.
#define DistanceBeforeUpdate    5.0     //the distance a player must travel before objects get updated. (also matters a lot for CPU usage)
#define DebugMode               1       //change this to 1 if you want to see debug messages in-game. (time taken for update, objects streamed, objects created, objects destroyed, ...)
#pragma dynamic                 30000   //increase this value if you have problems with stach/heap size.
_Functions:____________________________________________
Code:
native F_CreateObject(modelid, Float:x, Float:y, Float:z, Float:rx, Float:ry, Float:rz, Float:vdist=0.0, bool:InstantUpdate=false);                 //creates an object, returns the objectid or -1 if not successful. (viewdistance and InstantUpdate parameter  are optional)
native F_CreatePlayerObject(playerid, modelid, Float:x, Float:y, Float:z, Float:rx, Float:ry, Float:rz, Float:vdist=0.0, bool:InstantUpdate=false); //creates a player-specific object, returns the objectid or -1 if not successful. (viewdistance and InstantUpdate parameter  are optional)
native F_DestroyObject(objectid);                                                                                                                   //destroys an object.
native F_IsObjectCreated(objectid);                                                                                                                 //returns 1 if the object is created, returns 0 if it's not.
native F_IsObjectCreatedForPlayer(playerid, objectid);                                                                                              //returns 1 if the object is created for a certain player, returns 0 if it's not.
native F_PlayerObjectUpdate(playerid, Float:x, Float:y, Float:z);                                                                                   //update objects for a player in a certain position.
native F_MoveObject(objectid, Float:x, Float:y, Float:z, Float:speed, Float:rx=0.0, Float:ry=0.0, Float:rz=0.0, bool:UpdatePos=true);               //moves an object. (rotation parameters rx ry and rz and UpdatePos are optional) (UpdatePos will update the object's coordinates for streaming at the right position)
native F_StopObject(objectid);                                                                                                                      //stops an object from moving, returns 1 on success and 0 if the object is invalid.
native F_IsObjectMoving(objectid);                                                                                                                  //returns 1 if the object is moving, returns 0 if the object is not moving, returns -1 if the object is invalid.
native F_AttachObjectToPlayer(objectid, playerid, Float:x, Float:y, Float;z, Float:rx, Float:ry, Float:rz, bool:InstantUpdate=false);               //attaches an object to a player.
native F_AttachObjectToVehicle(objectid, vehicleid, Float:x, Float:y, Float:z, Float:rx, Float:ry, Float:rz, bool:InstantUpdate=false);             //attaches an object to a vehicle.
native F_SetObjectPos(objectid, Float:x, Float:y, Float:z, bool:InstantUpdate=false);                                                               //sets the position of an object. (InstantUpdate parameter  is optional)
native F_GetObjectPos(objectid, &Float:x, &Float:y, &Float:z);                                                                                      //gets the position of an object in x, y and z.
native F_SetObjectRot(objectid, Float:rx, Float:ry, Float:rz);                                                                                      //sets the rotation of an object.
native F_GetObjectRot(objectid, &Float:rx, &Float:ry, &Float:rz);                                                                                   //gets the rotation of an object in rx, ry and rz.
native F_CountObjects();                                                                                                                            //returns the amount of created objects.
native F_RefreshObjects(playerid);                                                                                                                  //recreates (refreshes) a certain player's objects. (useful to recreate broken objects like glass, boxes, barrels, ...)
native F_ObjectUpdateForAll();                                                                                                                      //instantly updates the objects for all players.
native SetPlayerPos(playerid, Float:x, Float:y, Float:z, bool:InstantUpdate=true);                                                                  //added extra parameter (optional) to disable instant object update.
_Callbacks:____________________________________________
Code:
native F_OnObjectMoved(objectid);             //callback which is called when an object has finished moving.
Functions like F_SetObjectPos(); can also be used on objects created with F_CreatePlayerObject();


_Download:____________________________________________

Include:
F_Streamer_1.2.rar

Include with filterscript:
F_Streamer_1.2_2.rar

Note: You don't need to download this filterscript if you want to put the objects in your gamemode. If you put them in your gamemode follow the instructions for "Use in gamemode" at "How to install"


_How to install:____________________________________________

Use as filterscript:
- Put the filterscript in this folder: server\filterscripts\<here>
- Change F_MAX_OBJECTS to the amount of objects you are using. (a little higher, for example: I you have 1000 objects, you should set this value to 1100 for avoiding problems when you add some more objects)
- Add F_Streamer to your filterscripts line in server.cfg
- Put your objects under OnFilterScriptInit() or where ever in the script you want them to be.

Use in gamemode:
- Put this inc in this folder: server\pawno\include\<here>
- Change F_MAX_OBJECTS to the amount of objects you are using. (a little higher, for example: I you have 1000 objects, you should set this value to 1100 for avoiding problems when you add some more objects)
- Add #include <F_Streamer> at the top of your gamemode.
- Put your objects under OnGameModeInit() or where ever in the script you want them to be.


_Creating objects:____________________________________________

Code:
F_CreateObject(modelid, Float:x, Float:y, Float:z, Float:rx, Float:ry, Float:rz, Float:vdist=0.0, bool:InstantUpdate=false);
Example:
Code:
F_CreateObject(987, 1126.183594, 1014.555176, 10.000000, 0.0000, 0.0000, 43.5305, 200.0, true);
In this example, creating this object will instantly show the object for all players instead of at the next update, because the last parameter is set to true. You should not do this for all objects, because it will take ages to load all objects if you refresh the player's objects each time you create an object...


To create the objects, you just need to change all object lines from CreateObject() to F_CreateObject()
(use CTRL + H in pawno)
The last parameter, draw distance, doesn't need to be added. When not added, it uses the standard drawdistance.

Little stress test video:
[ame]http://www.youtube.com/watch?v=HhshSJufhJo[/ame]

Streaming speed video:
[ame]http://www.youtube.com/watch?v=calvWe8dszU[/ame]


_Changelog:____________________________________________

20-09-'12 v1.2 released
- Improved streaming with SetPlayerPos.
- Added InstantUpdate parameter to SetPlayerPos.
- Stuff updated with moveobject parameters.
- Minor updates at F_CreateObject and F_PlayerObjectUpdate.
- Bug fixed with playerobjects still being created after the player left.
- Updated distance sorting code for faster update times.
- Added debug mode (shows ingame information about objects being created/destroyed).
- Made streamer run even faster!
- Added function AttachObjectToVehicle.
- Fixed attached objects not re-appearing after the object was out of range.

26-12-'11 v1.1 released
- Loading 100.000 objects happens in the blink of an eye now, instead of in a minute. (issue with slow objectid assignment)
- Function removed: F_IsValidObject. (see F_IsObjectCreated)
- Streamer starts up faster now. (start of the update timer now happens after all objects are created)
- Function added: F_CountObjects();

25-12-'11 v1.0 released
- Fixed a bug with F_MoveObject rotation not working correctly.
- Added IsObjectCreated(objectid);
- Streamer runs a little faster.

24-12-'11 v0.9 released
- Bug fixed which made the streamer work really slow.
- Streamer runs even faster now!
- Added InstantUpdate parameter to F_CreateObject and F_CreatePlayerObject.
- Added new setting for the configuration: DistanceBeforeUpdate. //the distance a player must travel before objects get updated. (also matters a lot for CPU usage)

21-12-'11 v0.8 released
- 0.3d compatible.
- Added F_IsObjectCreatedForPlayer(playerid);
- Added F_IsObjectMoving(objectid);
- Fixed problem with trying to move objects that were already moving.
- Fixed some other small bugs.

16-01-'11 v0.7 released
- Added AttachObjectToPlayer(objectid, playerid, x, y, z, rx, ry, rz);
- No more need for adding F_OnPlayerConnect(playerid); -> see credits

09-01-'11 v0.6 released
- Version works for sa-mp 0.3c
- Added Player Objects (F_CreatePlayerObject)
- Added F_OnObjectMoved(objectid);

20-08-'10 v0.5 released
- Version for sa-mp 0.3b (with draw distance parameter) (also works on 0.3a)

16-01-'10 v0.4 released
- Missing objects bug totally fixed

15-01-'10 v0.3 released
- Object calculation is A LOT faster now (it uses a lot less CPU).
- Code optimized

13-01-'10 v0.2 released
- New function: F_RefreshObjects(playerid) //recreates (refreshes) a certain player's objects. (useful to recreate broken objects like glass, boxes, barrels, ...)
- Stuff fixed with missing objects

02-01-'10 v0.1 released
- Initial release


_Credits:____________________________________________
- Credits to Hiddos and ****** for the callback hook for OnPlayerConnect.




If there are any questions, just ask them here!
NO mirrors please.
Reply


Messages In This Thread
[INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by ғαιιοцт - 02.01.2010, 12:51
Re: [INC] Fallout's Object Streamer - by Deat_Itself - 02.01.2010, 12:51
Re: [INC/FS] Fallout's Object Streamer - by RenisiL - 02.01.2010, 13:31
Re: [INC/FS] Fallout's Object Streamer - by pliva_sb - 02.01.2010, 13:55
Re: [INC/FS] Fallout's Object Streamer - by ғαιιοцт - 02.01.2010, 14:04
Re: [INC/FS] Fallout's Object Streamer - by fsnameless - 02.01.2010, 14:10
Re: [INC/FS] Fallout's Object Streamer - by ғαιιοцт - 02.01.2010, 14:25
Re: [INC/FS] Fallout's Object Streamer - by RyDeR` - 02.01.2010, 18:03
Re: [INC/FS] Fallout's Object Streamer - by a-day - 02.01.2010, 18:10
Re: [INC/FS] Fallout's Object Streamer - by Rac3r - 02.01.2010, 18:20
Re: [INC/FS] Fallout's Object Streamer - by ғαιιοцт - 02.01.2010, 19:08
Re: [INC/FS] Fallout's Object Streamer - by ғαιιοцт - 02.01.2010, 19:12
Re: [INC/FS] Fallout's Object Streamer - by Oxside - 02.01.2010, 19:21
Re: [INC/FS] Fallout's Object Streamer - by kurta999 - 02.01.2010, 19:26
Re: [INC/FS] Fallout's Object Streamer - by ThaYuriShit - 02.01.2010, 19:55
Re: [INC/FS] Fallout's Object Streamer - by Hijolion - 02.01.2010, 20:24
Re: [INC/FS] Fallout's Object Streamer - by HydraX - 02.01.2010, 21:12
Re: [INC/FS] Fallout's Object Streamer - by HydraX - 02.01.2010, 21:43
Re: [INC/FS] Fallout's Object Streamer - by ғαιιοцт - 02.01.2010, 21:59
Re: [INC/FS] Fallout's Object Streamer - by RyDeR` - 02.01.2010, 22:22
Re: [INC/FS] Fallout's Object Streamer - by Jese - 02.01.2010, 22:25
Re: [INC/FS] Fallout's Object Streamer - by HydraX - 02.01.2010, 22:41
Re: [INC/FS] Fallout's Object Streamer - by ғαιιοцт - 03.01.2010, 07:49
Re: [INC/FS] Fallout's Object Streamer - by Kurence - 03.01.2010, 07:53
Re: [INC/FS] Fallout's Object Streamer - by Rac3r - 03.01.2010, 08:19
Re: [INC/FS] Fallout's Object Streamer - by ғαιιοцт - 03.01.2010, 08:33
Re: [INC/FS] Fallout's Object Streamer - by BuLLeT[LTU] - 03.01.2010, 13:10
Re: [INC/FS] Fallout's Object Streamer - by ғαιιοцт - 03.01.2010, 15:33
Re: [INC/FS] Fallout's Object Streamer - by Deat_Itself - 03.01.2010, 15:39
Re: [INC/FS] Fallout's Object Streamer - by patchkinson - 03.01.2010, 15:42
Re: [INC/FS] Fallout's Object Streamer - by ғαιιοцт - 03.01.2010, 18:18
Re: [INC/FS] Fallout's Object Streamer - by Oxside - 03.01.2010, 19:50
Re: [INC/FS] Fallout's Object Streamer - by a-day - 03.01.2010, 22:04
Re: [INC/FS] Fallout's Object Streamer - by ғαιιοцт - 04.01.2010, 15:08
Re: [INC/FS] Fallout's Object Streamer - by RyDeR` - 04.01.2010, 15:58
Re: [INC/FS] Fallout's Object Streamer - by BP13 - 05.01.2010, 22:14
Re: [INC/FS] Fallout's Object Streamer - by John Rockie - 06.01.2010, 01:09
Re: [INC/FS] Fallout's Object Streamer - by bobmarley137 - 06.01.2010, 01:35
Re: [INC/FS] Fallout's Object Streamer - by HydraX - 06.01.2010, 02:12
Re: [INC/FS] Fallout's Object Streamer - by ғαιιοцт - 06.01.2010, 10:44
Re: [INC/FS] Fallout's Object Streamer v0.4 - by ғαιιοцт - 29.01.2010, 15:41
Re: [INC/FS] Fallout's Object Streamer v0.4 - by AsAsIn2 - 02.02.2010, 09:54
Re: [INC/FS] Fallout's Object Streamer v0.4 - by ғαιιοцт - 02.02.2010, 14:36
Re: [INC/FS] Fallout's Object Streamer v0.4 - by [zZz]Sl4y - 07.02.2010, 19:44
Re: [INC/FS] Fallout's Object Streamer v0.4 - by ғαιιοцт - 07.02.2010, 20:38
Re: [INC/FS] Fallout's Object Streamer v0.4 - by RSC_Quicker - 07.02.2010, 21:15
Re: [INC/FS] Fallout's Object Streamer v0.4 - by Guy_Of_Stunting - 08.02.2010, 07:21
Re: [INC/FS] Fallout's Object Streamer v0.4 - by Samy Romafia - 10.02.2010, 19:08
Re: [INC/FS] Fallout's Object Streamer v0.4 - by BP13 - 10.02.2010, 20:34
Re: [INC/FS] Fallout's Object Streamer v0.4 - by Christopher. - 17.02.2010, 14:46
Re: [INC/FS] Fallout's Object Streamer v0.4 - by LuciaN_LucI - 10.04.2010, 12:59
Re: [INC/FS] Fallout's Object Streamer v0.4 - by ғαιιοцт - 10.04.2010, 13:04
Re: [INC/FS] Fallout's Object Streamer v0.4 - by LuciaN_LucI - 10.04.2010, 14:31
Re: [INC/FS] Fallout's Object Streamer v0.4 - by ғαιιοцт - 10.04.2010, 15:06
Re: [INC/FS] Fallout's Object Streamer v0.4 - by LuciaN_LucI - 10.04.2010, 15:24
Re: [INC/FS] Fallout's Object Streamer v0.4 - by ғαιιοцт - 10.04.2010, 21:21
Do not go public OnObjectMoved (objectid) on F_streamer - by caea - 15.04.2010, 17:11
Re: [INC/FS] Fallout's Object Streamer v0.4 - by 0ne - 15.04.2010, 17:42
Re: [INC/FS] Fallout's Object Streamer v0.4 - by ғαιιοцт - 15.04.2010, 18:41
Re: [INC/FS] Fallout's Object Streamer v0.4 - by Adil - 15.04.2010, 18:42
Re: [INC/FS] Fallout's Object Streamer v0.4 - by Pive - 21.06.2010, 19:59
Re: [INC/FS] Fallout's Object Streamer v0.4 - by xavier152 - 21.06.2010, 21:23
Re: [INC/FS] Fallout's Object Streamer v0.4 - by Hydraz - 22.06.2010, 09:06
Re: [INC/FS] Fallout's Object Streamer v0.4 - by bram2005 - 07.07.2010, 10:56
Re: [INC/FS] Fallout's Object Streamer v0.4 - by Rolyy - 09.07.2010, 02:08
Re: [INC/FS] Fallout's Object Streamer v0.4 - by Rolyy - 09.07.2010, 11:28
Re: [INC/FS] Fallout's Object Streamer v0.4 - by Brian_Furious - 09.07.2010, 17:02
Re: [INC/FS] Fallout's Object Streamer v0.4 - by yezizhu - 11.07.2010, 06:49
Re: AW: [INC/FS] Fallout's Object Streamer v0.7 (UPDATED ON 16-01-11) - by ғαιιοцт - 23.12.2011, 21:39
Re: [INC/FS] Fallout's Object Streamer v0.9 (UPDATED ON 24-12-11) - by ғαιιοцт - 24.12.2011, 12:45
AW: [INC/FS] Fallout's Object Streamer v0.7 (UPDATED ON 16-01-11) - by Blokkmonsta - 24.12.2011, 13:12
Re: [INC/FS] Fallout's Object Streamer v0.7 (UPDATED ON 16-01-11) - by ғαιιοцт - 24.12.2011, 13:14
Re: [INC/FS] Fallout's Object Streamer v0.7 (UPDATED ON 16-01-11) - by Killa[DGZ] - 24.12.2011, 16:17
Re: [INC/FS] Fallout's Object Streamer v0.7 (UPDATED ON 16-01-11) - by ғαιιοцт - 25.12.2011, 00:18
Re: [INC/FS] Fallout's Object Streamer v0.7 (UPDATED ON 16-01-11) - by Baboon - 25.12.2011, 00:33
Re: [INC/FS] Fallout's Object Streamer v0.7 (UPDATED ON 16-01-11) - by ғαιιοцт - 25.12.2011, 00:37
Re: [INC/FS] Fallout's Object Streamer v0.7 (UPDATED ON 16-01-11) - by Baboon - 25.12.2011, 00:44
Re: [INC/FS] Fallout's Object Streamer v0.7 (UPDATED ON 16-01-11) - by ғαιιοцт - 25.12.2011, 00:51
Re: [INC/FS] Fallout's Object Streamer v1.0 (UPDATED ON 25-12-'11) - by DotRascaL - 23.08.2012, 13:57
Re: [INC/FS] Fallout's Object Streamer v1.0 (UPDATED ON 25-12-'11) - by ғαιιοцт - 20.09.2012, 10:56
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by HarrisonC - 20.09.2012, 13:26
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by ғαιιοцт - 20.09.2012, 16:12
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by hclj - 20.09.2012, 21:38
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by ғαιιοцт - 20.09.2012, 22:07
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by RedFusion - 20.09.2012, 22:39
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by TheArcher - 21.09.2012, 13:32
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by ғαιιοцт - 23.09.2012, 10:37
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by Q_Lite - 24.09.2012, 07:10
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by ғαιιοцт - 24.09.2012, 15:22
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by wroxx - 07.10.2012, 12:10
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by M3mPHi$_S3 - 08.10.2012, 12:34
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by budelis - 14.10.2012, 11:13
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by Lordzy - 14.10.2012, 11:17
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by VIP475 - 17.10.2012, 08:29
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by VIP475 - 03.11.2012, 06:37
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by Cebo - 09.12.2012, 07:45
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by Astralis - 25.12.2012, 06:55
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by SkT - 27.12.2012, 11:36
AW: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by Flashbrot - 27.12.2012, 12:14
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by Darien - 29.12.2012, 16:52
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by Astralis - 29.12.2012, 19:43
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by SkT - 30.12.2012, 12:41
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by vMapper - 31.12.2012, 06:16
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by Astralis - 31.12.2012, 06:57
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by Darien - 31.12.2012, 12:54
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by Astralis - 31.12.2012, 13:35
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by Darien - 31.12.2012, 13:53
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by Black Wolf - 01.01.2013, 17:02
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by paultje162 - 21.01.2013, 12:14
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by [GF]Logic - 21.01.2013, 12:25
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by Astralis - 21.01.2013, 12:44
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by Madeline - 28.01.2013, 11:29
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by arathin - 01.03.2013, 23:38
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by Godzilla8957 - 05.04.2013, 00:00
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by Astralis - 26.04.2013, 10:17
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by AnDrew. - 08.06.2013, 17:45
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by ManGoe - 22.02.2014, 00:23
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by mahardika - 22.02.2014, 04:34
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by KermitTheMysteryFrog - 24.02.2014, 19:58
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by Arastair - 02.12.2014, 11:55
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by Defy248 - 03.12.2014, 16:05
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by nemanjasepa - 18.06.2016, 13:10
Re: [INC/FS] Fallout's Object Streamer v1.2 for 0.3e (updated on 20-09-'12 ~ new features!) - by AbyssMorgan - 18.06.2016, 13:23

Forum Jump:


Users browsing this thread: 1 Guest(s)