ambaca

Results 15 comments of ambaca

I tested, on Windows, CSGO game. ConVar.SetString() will change value last. `"sm_test_configs" = "0" ( def. "1" ) min. 0.000000` ``` Metamod:Source version 1.11.0-dev+1145 SourceMod Version: 1.10.0.6528 ``` ``` pawn...

After all, changing cvar from code and from config file this way, it not look brilliant way to do it. I can't think a situation why you need to do...

Maybe name change is asynchronous. https://github.com/lua9520/source-engine-2018-hl2_src/blob/3bf9df6b2785fa6d951086978a3e66f49427166a/engine/baseclient.cpp#L1443 Name change have delay. Can't get new name after setname in same code sequence. ```sourcepawn #include static const char names[][] = { "TestA", "TestB",...

Worked fine in Windows. And I'm using SRCDS.exe (AppID 17575) ``` meta version Metamod:Source Version Information Metamod:Source version 1.11.0-dev+1148 Plugin interface version: 16:14 SourceHook version: 5:5 Loaded As: Valve Server...

Hi. I don't know, do you know, but base SM reserved slots plugin is not amazing. **Because you need get extra player slots** to get this work. SourceMod not add...

Hook Event "player_connect", "player_disconnect"

I have totally forget, I had made this issue before :D Sorry.

DHooks have this feature, to follow entity: https://sm.alliedmods.net/new-api/dhooks/DHookAddEntityListener https://sm.alliedmods.net/new-api/dhooks/DHookRemoveEntityListener https://sm.alliedmods.net/new-api/dhooks/ListenCB ~~How about create SM plugin to do this ? I made a example. Haven't test in long usage. [Hook OnEntityDestroyed...

> > The DHooks extension wouldn't be loaded if you didn't have a plugin using it, and no plugins ship with SM that use it. > > What plugins are...

Yes, good fix is make map config file ```cfg/mapname.cfg``` and add ```tf_mvm_popfile "scripts/population/mapname.pop"``` -Never know if someone like use custom pop file instead official. *dunno how game pick different category......