Nistor Constantin-Flavius

Results 65 comments of Nistor Constantin-Flavius

If you still need a solution for this... When a player connects, your code may be somewhere setting [Streamer_ToggleItemUpdate](https://github.com/samp-incognito/samp-streamer-plugin/wiki/Natives-(Updates)#streamer_toggleitemupdateplayerid-type-toggle) to false for `STREAMER_TYPE_OBJECT`. When the Streamer Plugin streams items, by...

Well, it isn't needed for `players`, as it is just a `std::bitset`. You can easily use `Streamer_GetArrayData`/`Streamer_SetArrayData`/`Streamer_RemoveArrayData` to achieve what you want for that container, but for the others, yeah,...

Yeah, it is fixed in fixes.inc for regular scripts, but Streamer Plugin 's Dynamic Actors still have the preloading bug which should be fixed in that way too.

I'm not sure if I'm missing something or you are missing something. Actors are created everytime when they get streamed for a player, which means that the animations aren't preloaded...

http://wiki.sa-mp.com/wiki/ApplyActorAnimation: ![image](https://user-images.githubusercontent.com/6208948/33290579-c4cb9c04-d3cb-11e7-907d-1dce1604b52f.png) Oh, weird, afaik fixes.inc isn't doing this.

If the fix is indeed the one listed on wiki, then it will be way easier to fix it inside this plugin (well, mostly because it will use less memory...

Well, of course that the majority is still running PAWN scripts, because that's the native way to create a SA-MP server, which sucks. This should be in the same branch,...

This may help, I guess: https://github.com/Y-Less/plugin-natives . I think it will simplify things a lot, but it won't allow us to use smarter names in namespaces, like ```Streamer::Functions::Object::Create```. But it...

That idea is even better too (I thought about it before seeing what Y_Less created), mainly because a lot of AMX code will be removed, while it will be kept...

I may start doing this. This is how I manually invoke Streamer functions right now (for example, in `Streamer::Object::GetPos` you see pointers because they are changed using sampGDK and they...