Because I suck at c++ and wasn't able to update the addon I decided to create a addon extension in c#. I added everything that I found to it, it also contains the stuff that I released earlier like teamcounter or gamespeed.
This plugin only works for server version 1.9.461
Functions
class: Set
class: Get
How to use
add the .dll as a reference to your plugin
namespace: Extension8Q
report any bugs
Examples of what you can create with it:
Aimbot
Bunker Builder
Credits
@8q4s8 - creator
@Nukem - awesome addon
Thanks to everyone who helped me with testing
EDIT: updated download, the old one caused some problems because of the obfuscation
This plugin only works for server version 1.9.461
Functions
class: Set
CSHARP Code
- void NoClip (int ClientNum, NoClipType nocliptype) // I added that because I found a second noclip
- void MapOnScreen (int ClientNum, bool activate) // enables/disables map on screen
- void GameSpeed (int GameSpeed) // changing gamespeed
- void ScreenRotation (int ClientNum, float value) // rotation the screen of the selected player
- void MouseX (int ClientNum, float value) // changing the mouse location of the player
- void MouseY (int ClientNum, float value) // changing the Y axis
- void Name (int ClientNum, string Name) // changing the name of the player, colors are working too
class: Get
CSHARP Code
- bool MapOnScreen (int ClientNum) // returns true = enabled, false = disabled
- int TeamScore (_Team team) // returning the score of the selected team (should work for every gametype)
- NoClipType NoClip (int ClientNum) // returns the players nocliptype
- int GameSpeed () // returns the gamespeed
- float MouseX (int ClientNum) // returns mouseX value
- float MouseY (int ClientNum) // returns MouseY value
- List<ServerClient> Allies () // returns list of players in team allies
- List<ServerClient> Axis () // returns list of players in team axis
- ServerClient GetLastAlive () // returns last alive(for infected) or null
- int Count (_Team team) // returns the amount of players in the team
- float ScreenRotation (int ClientNum) // returns screenrotation
How to use
add the .dll as a reference to your plugin
namespace: Extension8Q
report any bugs
Examples of what you can create with it:
Aimbot
Bunker Builder
Credits
@8q4s8 - creator
@Nukem - awesome addon
Thanks to everyone who helped me with testing
EDIT: updated download, the old one caused some problems because of the obfuscation