nosoop
nosoop
In response to a deleted comment, while [I do have a working implementation of this in stocksoup](https://github.com/nosoop/stocksoup/blob/fe569a887157aa316c04351425b325cfaef7d43b/memory.inc#L53-L76), it uses SourceMod-specific implementation details that I don't want to have to rely...
I think having a hybrid of both would be best — the changes on the C++ side are necessary since core manages `sm_nextmap` and there's no guarantee that the plugin...
> > If the old plugin is used against a newer core version the sm_nextmap cvar will never get re-populated after map change, so SM will stop controlling the map...
I've tested the latest commit against TF2 - including running a copy of `nextmap.smx` from before this change - and it should be fine, aside from the current behavior the...
Could you clarify? There is no change in that the engine still handles checking the validity of the map and preparing resources here; I don't quite understand where `sv_downloadurl` ties...
[Implementation of the above API available here.](https://github.com/nosoop/SMExt-EntityLump) As of this comment edit, it's capable of dealing with: - lumps using exotic line endings (a L4D2 map that was made official...
Yes, the extension currently allows for writing to entity lump handles (the read-only exception logic is currently unimplemented, but it would be straightforward to implement — I'm just lazy). The...
[Appears to have been previously discussed on the old AM bug tracker.](https://bugs.alliedmods.net/show_bug.cgi?id=5505) `OnAllPluginsLoaded` doesn't really help in this case because the plugin in question is also a shared plugin: -...
> It sounds like a broken API on this one - the reason why is there's no forward or similar to indicate the parent API is ready. Blocking or demanding...
Have tested and confirmed that it's working now. [This plugin is available as a sample for entity lump access](https://gist.github.com/nosoop/66b818407a1e1231808ede949e668ba6); it's a copy of [the extension's version](https://github.com/nosoop/SMExt-EntityLump/blob/main/sourcepawn/entitylump_native_test.sp) with the replacement of...