Posts: 328
	Threads: 79
	Joined: Jan 2011
	
	
 
	
	
		How can add certain objects in particular virtual world only? Because if in my server there are many house with same interior and different vitural worlds, So if i want to spawn some objects only in one virtual world, I use midostreamer help me
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 973
	Threads: 11
	Joined: Mar 2008
	
Reputation: 
0
	 
 
	
	
		That functionality has to be built in, and as far as i know, its not implemented in midostream. Incognito's streamer supports this, uses a better algorithm to check positions, and offer tons more in terms of features (it streams everything you can think of, including [player] areas).
If its faster and offers more, why not switch :P.
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 328
	Threads: 79
	Joined: Jan 2011
	
	
 
	
	
		Then i have to change my entire objects to streamer objects which i have now
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 328
	Threads: 79
	Joined: Jan 2011
	
	
 
	
	
		I dont know why i had issues with both the streamers only some objects gets spawned at one time , Maybe my pc is too slow? I have server in my pc
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 328
	Threads: 79
	Joined: Jan 2011
	
	
 
	
	
		Thanks kyosaur, I know about convertffs btw Do i need to place any natives or forwards that we place on top of the script to create an object?
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 328
	Threads: 79
	Joined: Jan 2011
	
	
 
	
	
		Im new to streamer and scripting too
Do i need to add these in my gamemode to add objects?
enum
{
    E_STREAMER_ATTACHED_PLAYER,
    E_STREAMER_ATTACHED_VEHICLE,
    E_STREAMER_COLOR,
    E_STREAMER_DISTANCE,
    E_STREAMER_DRAW_DISTANCE,
    E_STREAMER_EXTRA_ID,
    E_STREAMER_INTERIOR_ID,
    E_STREAMER_MAX_X,
    E_STREAMER_MAX_Y,
    E_STREAMER_MAX_Z,
    E_STREAMER_MIN_X,
    E_STREAMER_MIN_Y,
    E_STREAMER_MIN_Z,
    E_STREAMER_MODEL_ID,
    E_STREAMER_MOVE_SPEED,
    E_STREAMER_MOVE_X,
    E_STREAMER_MOVE_Y,
    E_STREAMER_MOVE_Z,
    E_STREAMER_NEXT_X,
    E_STREAMER_NEXT_Y,
    E_STREAMER_NEXT_Z,
    E_STREAMER_PLAYER_ID,
    E_STREAMER_R_X,
    E_STREAMER_R_Y,
    E_STREAMER_R_Z,
    E_STREAMER_SIZE,
    E_STREAMER_STYLE,
    E_STREAMER_TEST_LOS,
    E_STREAMER_TYPE,
    E_STREAMER_WORLD_ID,
    E_STREAMER_X,
    E_STREAMER_Y,
    E_STREAMER_Z
}
#define STREAMER_TYPE_OBJECT (0)
#define STREAMER_TYPE_PICKUP (1)
#define STREAMER_TYPE_CP (2)
#define STREAMER_TYPE_RACE_CP (3)
#define STREAMER_TYPE_MAP_ICON (4)
#define STREAMER_TYPE_3D_TEXT_LABEL (5)
#define STREAMER_TYPE_AREA (6)
And any other things should i need to add please help, thanks
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 328
	Threads: 79
	Joined: Jan 2011
	
	
 
	
	
		How do i change max object limit?