Streamer error please urgent
#1

I am using mido streamer , I placed stream objects below ongamemodeint , it compiles correctly but when i get in game I cant see those objects plz help
Reply
#2

Probably something about the drawdistance or something. Anyways I suggest using incognitos streamer, it works like a charm.
Reply
#3

I also tried that one none work please help ,
Reply
#4

Show us an extract from your code wherever you add the objects.
Reply
#5

This is the code extracr
Quote:

public OnGameModeInit()
{
print("Stage 1 - Initiazed !");
Website = TextDrawCreate(5.0, 431.0, "www.lost-RP.org");
TextDrawUseBox(Website, false);//
SetNameTagDrawDistance(30.0);
EnableStuntBonusForAll(0);
AllowInteriorWeapons(1);
UsePlayerPedAnims();
for(new i = 0; i < MAX_VEHICLES; i++)
{
Gas[i] = 100;
}
{
// Set the audio pack when the gamemode loads
Audio_SetPack("default_pack", true);
}
LoadBizz();
print("Stage 2 - Initiazed !");
LoadBoxer();
print("Stage 3 - Initiazed !");
LoadStuff();
print("Stage 4 - Initiazed !");
LoadIRC();
print("Stage 5 - Initiazed !");
LoadFamilies();
print("Stage 6 - Initiazed !");
LoadPoints();
print("Stage 7 - Initiazed !");
IRCInfo[0][iPlayers] = 0; IRCInfo[1][iPlayers] = 0; IRCInfo[2][iPlayers] = 0;
IRCInfo[3][iPlayers] = 0; IRCInfo[4][iPlayers] = 0; IRCInfo[5][iPlayers] = 0;
IRCInfo[6][iPlayers] = 0; IRCInfo[7][iPlayers] = 0; IRCInfo[8][iPlayers] = 0;
IRCInfo[9][iPlayers] = 0;
SetGameModeText("M-RP v2.1");
gettime(ghour, gminute, gsecond);
FixHour(ghour);
ghour = shifthour;
if(!realtime)
{
SetWorldTime(wtime);
}
{
// Set the audio pack when the gamemode loads
Audio_SetPack("default_pack", true);
}
// Player Class's
for(new i = 0; i <= sizeof(PedSkins)-1; i++)
{
AddPlayerClass(PedSkins[i][0],982.1890,-1624.2583,14.952,90,-1,-1,-1,-1,-1,-1);
}
//BUTTONS
CreateButton(244.92, 72.29, 1004.27, 0.0); // LSPD DOOR ENTER
CreateButton(244.91, 73.81, 1004.27, 90.0); // LSPD DOOR EXIT
CreateButton(1765.9000, -1574.0979, 1641.7, 270.0); // PRISON CELL OPEN
CreateButton(222.41, 71.29, 1005.66, 90.0); // CHIEF DOOR OUTSIDE
CreateButton(221.87, 68.34, 1005.66, 270.0); // CHIEF DOOR INSIDE
//PERISHING SQUARE
CreateStreamObject(1337,1499.90234375,-1609.41992188,13.54687500,0.00000000,0.00000000,0. 00000000,250); //
CreateStreamObject(16052,1479.44030762,-1605.78625488,14.68529320,0.00000000,0.00000000,0. 00000000,250); //
CreateStreamObject(984,1487.05163574,-1605.79846191,13.67597675,0.00000000,0.00000000,90 .00000000,250); //
CreateStreamObject(984,1499.99841309,-1605.78771973,13.68355465,0.00000000,0.00000000,90 .00000000,250); //
CreateStreamObject(984,1509.67993164,-1605.81103516,13.68355465,0.00000000,0.00000000,90 .00000000,250); //
CreateStreamObject(984,1516.08972168,-1612.20825195,13.68355465,0.00000000,0.00000000,0. 00000000,250); //
CreateStreamObject(984,1516.08276367,-1625.08752441,13.68355465,0.00000000,0.00000000,0. 00000000,250); //
CreateStreamObject(984,1516.07604980,-1635.67504883,13.68355465,0.00000000,0.00000000,0. 00000000,250); //
CreateStreamObject(984,1516.15588379,-1695.21166992,13.68355465,0.00000000,0.00000000,0. 00000000,250); //

Reply
#6

Have you loaded the filterscript? Maybe you need to redefine the max_objects?

The view distance should also be a float.
pawn Код:
CreateStreamObject(1337,1499.90234375,-1609.41992188,13.54687500,0.00000000,0.00000000,0. 00000000,250.0); //
CreateStreamObject(16052,1479.44030762,-1605.78625488,14.68529320,0.00000000,0.00000000,0. 00000000,250.0); //
CreateStreamObject(984,1487.05163574,-1605.79846191,13.67597675,0.00000000,0.00000000,90 .00000000,250.0); //
CreateStreamObject(984,1499.99841309,-1605.78771973,13.68355465,0.00000000,0.00000000,90 .00000000,250.0); //
CreateStreamObject(984,1509.67993164,-1605.81103516,13.68355465,0.00000000,0.00000000,90 .00000000,250.0); //
CreateStreamObject(984,1516.08972168,-1612.20825195,13.68355465,0.00000000,0.00000000,0. 00000000,250.0); //
CreateStreamObject(984,1516.08276367,-1625.08752441,13.68355465,0.00000000,0.00000000,0. 00000000,250.0); //
CreateStreamObject(984,1516.07604980,-1635.67504883,13.68355465,0.00000000,0.00000000,0. 00000000,250.0); //
CreateStreamObject(984,1516.15588379,-1695.21166992,13.68355465,0.00000000,0.00000000,0. 00000000,250.0); //
Reply
#7

I have loaded the filterscript, I defined max_objects as 10000 but still it doesnt work whats the problem? and what do you mean by view diestance should also be a float isnt it float in the script i posted?
Reply
#8

Quote:
Originally Posted by Swiftz
Посмотреть сообщение
I have loaded the filterscript, I defined max_objects as 10000 but still it doesnt work whats the problem? and what do you mean by view diestance should also be a float isnt it float in the script i posted?
No, and 10000 is a bit much. Copy the code I gave you.
Reply
#9

How much should i define max_objects??
Reply
#10

And the code you gave and i posted are the same once check,
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)