06.11.2016, 13:08
+ sometimes it's randomly destroying vehicles. I haven't able to fix it before.
Yes, but it's bugged. Sometimes vehicle disappear or it's trainer and I don't know why. (There was a vehicle streamer, it also has similar bug nevertheless with mine version it's a bit different)
Maybe in the future I will check this again, but now I even don't have a normal computer to run Visual Studio. Therefore, it's now difficult. |
Can anyone please compile the latest version of streamer for me? I just don't want to download a C++ compiler for 1 compile task. At least for Windows, I can do the Linux on my VPS.
|
How to fix?
*** Streamer Plugin: Include file version (0x278001) does not match plugin version (0x279001)[...] |
Hi,
I'm the owner of a RP server who runs at approximatively 100 players each night. Our GameMode has over 80k lines of mapping. Since a few days, we have trouble when installing new mappings on the server. They simply don't appear when we try teleporting to them. Sometimes they do appear for like a second, then dissapear. Would you know how to fix this issue? |
How to set dynamic label as static? For other items setting stream distance to -1.0 works, but for labels not. It seems that draw distance play role, but setting it to -1.0 or 0.0 also don't work.
|
The Draw Distance doesn't influence the stream distance at all |
I'm surprised that -1.0 made your item static, instead of just applying the default stream distance. |
Specifying a negative streaming distance (setting streamdistance to -1.0) will make an item static. All distance checks are omitted on static items, meaning they will always be visible, and they will therefore take priority over non-static items. See Streamer_ToggleStaticItem for easily toggling this setting on existing items. |
Are you sure, did you test it? As I wrote, changing stream distance in function CreateDynamic3DTextLabel do nothing, but if I change draw distance, then I can see it from far distance.
Quote from Streamer's wiki: Also Streamer_ToggleStaticItem doesn't work if I use it on dynamic label. |
I'm 100% sure about the first thing I said |
CreateDynamic3DTextLabel("Nitro", -1, 0.0, 0.0, 3.0, 5.0, .testlos = 0, .streamdistance = -1.0); CreateDynamic3DTextLabel("Repair", -1, 0.0, 0.0, 13.0, 5.0, .testlos = 0, .streamdistance = -1.0);
You can use an unrealistically high value for Draw Distance |