Fallouts streamer problems -
KermitTheMysteryFrog - 24.02.2014
Hi guys, im new here, i started some time ago with pawno and now i have some little knowledge about how to, what to etc. I making a project with custom map and i would use SetObjectMaterial & SetObjectMaterialText, i was using till now Incognitos streamer but its really slow, Fallout have a faster one so decided to change. And now come steps on which i cant climb, Fallout havent added those functions to his streamer so i though i could use both streamers but if i add object by F_createObject and under it add SetObjectMaterial so it looks like:
PHP код:
#include <a_samp>
#include <streamer>
#include <F_streamer>
new kolejnedno0;
public OnFilterScriptInit()
{
kolejnedno0 = F_CreateObject(18751,116.988,5081.883,-9.920,0.000,0.000,0.000, 200.0, true);
SetDynamicObjectMaterial(kolejnedno0, 0, 4992, "airportdetail", "hedge2", 0);
SetDynamicObjectMaterial(kolejnedno0, 1, 4992, "airportdetail", "hedge2", 0);
SetDynamicObjectMaterial(kolejnedno0, 2, 4992, "airportdetail", "hedge2", 0);
SetDynamicObjectMaterial(kolejnedno0, 3, 4992, "airportdetail", "hedge2", 0);
i got error
PHP код:
C:\Users\User\Desktop\PolandProject.pwn(167) : error 017: undefined symbol "SetDynamicObjectMaterial"
is it some way to add this funcition to streamer? and if yes how can i do that? Or the only way for S.O.M. is use incognito streamer? thx for help
Re: Fallouts streamer problems -
Bingo - 24.02.2014
Thats not possible :/ Update your streamer and compile your gamemode by opening pawno.exe manually.
Re: Fallouts streamer problems -
KermitTheMysteryFrog - 24.02.2014
I updated plugins and includes and now getting this errors:
PHP код:
#include <a_samp>
#include <F_Streamer> //faster without SetDynamicObjectMaterial
#include <streamer> // lower with SetDynamicObjectMaterial;
new zabudowany1;
new zabudowany2;
new zabudowany3;
new zabudowany4;
public OnFilterScriptInit()
{
line460: zabudowany1 = F_CreateObject(6959, 822, 4437, 4.15,0.000,0.000,0.000, 200.0, true);
line461: zabudowany2 = F_CreateObject(6959, 822, 4477.00977, 4.15, 0, 0, 18,0.00, 200.0, true);
line462: zabudowany3 = F_CreateObject(6959, 822, 4516.99512, 4.15, 0, 0, ,0.00, 200.0, true);
line463: zabudowany4 = F_CreateObject(6959, 822, 4557.00977, 4.15, 0, 0, 18,0.00, 200.0, true);
SetDynamicObjectMaterial(zabudowany1, 0, 8344, "vgssland01", "brickred", 0);
SetDynamicObjectMaterial(zabudowany2, 0, 8344, "vgssland01", "brickred", 0);
SetDynamicObjectMaterial(zabudowany3, 0, 8344, "vgssland01", "brickred", 0);
SetDynamicObjectMaterial(zabudowany4, 0, 8344, "vgssland01", "brickred", 0);
Now giving this errors
PHP код:
C:\Users\User\Downloads\samp03z_svr_R1_win32\filterscripts\PolandProject.pwn(461) : warning 213: tag mismatch
C:\Users\User\Downloads\samp03z_svr_R1_win32\filterscripts\PolandProject.pwn(462) : error 029: invalid expression, assumed zero
C:\Users\User\Downloads\samp03z_svr_R1_win32\filterscripts\PolandProject.pwn(462) : warning 215: expression has no effect
C:\Users\User\Downloads\samp03z_svr_R1_win32\filterscripts\PolandProject.pwn(462) : warning 215: expression has no effect
C:\Users\User\Downloads\samp03z_svr_R1_win32\filterscripts\PolandProject.pwn(462) : warning 215: expression has no effect
C:\Users\User\Downloads\samp03z_svr_R1_win32\filterscripts\PolandProject.pwn(462) : error 001: expected token: ";", but found ")"
C:\Users\User\Downloads\samp03z_svr_R1_win32\filterscripts\PolandProject.pwn(462) : error 029: invalid expression, assumed zero
C:\Users\User\Downloads\samp03z_svr_R1_win32\filterscripts\PolandProject.pwn(462) : fatal error 107: too many error messages on one line
Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
4 Errors.
Re: Fallouts streamer problems -
Bingo - 24.02.2014
Show 462 line please.
Press CTRL+G and type 462.
Re: Fallouts streamer problems -
Scenario - 24.02.2014
What do you mean Incognito's plugin is slow? Last time I checked, Fallout's hasn't been updated in years!
Re: Fallouts streamer problems -
KermitTheMysteryFrog - 25.02.2014
i mean is much slower than Fallouts, objects (of course depense how you set streamDistance, i have set for 300.0) hardly spawning, i using object 4242 as my ground and i see spawning square after square, i tested it with Fallout's streamer and if you good set stream distance & stream update then you can even not realize that objects are spawning, its just look like it was from forever there. The newest version is from 2012. Did u see stress test video in Fallout's streamer thread?
Can be that be a case ?
PHP код:
SA-MP Dedicated Server
----------------------
v0.3z, (C)2005-2014 SA-MP Team
[13:27:45]
[13:27:45] Server Plugins
[13:27:45] --------------
[13:27:45] [COLOR="Red"] Loading plugin: streamer.dll[/COLOR]
[13:27:45]
*** Streamer Plugin v2.7 by Incognito loaded ***
[13:27:45] Loaded.
[13:27:45] Loaded 1 plugins.
[13:27:45]
[13:27:45] Filterscripts
[13:27:45] ---------------
[13:27:45] Loading filterscript 'PolandProject.amx'...
[13:27:46] Loaded 1 filterscripts.
[13:27:46] [COLOR="red"]*** Streamer Plugin: Warning: Include file version (0x26105) does not match plugin version (0x27002) (script might need to be recompiled with the latest include file)[/COLOR]
its everything from package from incognito, before when i was using some older version of his streamer i didnt get anything like this. I dont know much about streamers but maybe Incognito's is slower because it got more functions ?