I'm using vim+tmux,
The tab/spaces isue is because I'm developing/committing to github from my notebook(archlinux without a WM, and where my server lives).
To make a post, I copy/paste from github to notepad++ and edit it to make a one file plugin (where the isue starts)
Search found 6 matches
- Thu Dec 29, 2016 1:24 am
- Forum: Plugin Releases
- Topic: [CSGO] Damage Print
- Replies: 3
- Views: 9213
- Thu Dec 29, 2016 12:49 am
- Forum: Plugin Development Support
- Topic: [CSGO] How to iter over ct and t spawns?
- Replies: 1
- Views: 3834
[CSGO] How to iter over ct and t spawns?
How can I iter over T and CT spawns? https://developer.valvesoftware.com/wiki/Info_player_terrorist https://developer.valvesoftware.com/wiki/Info_player_counterterrorist I don't know what I am doing wrong from commands.say import SayCommand from messages import SayText2 from filters.entities import ...
- Wed Dec 28, 2016 11:57 pm
- Forum: Plugin Releases
- Topic: [CSGO] Team Swapper
- Replies: 0
- Views: 6405
[CSGO] Team Swapper
Swaps teams Usage Type in chat: !ct .ct !t .t !spec .spec !swap .swap Install Create a file in: addons/source-python/plugins/swapper/swapper.py Copy paste script to swapper.py Load plugin adding sp plugin load swapper or type manualy on server console from commands.say import SayCommand from player...
- Wed Dec 28, 2016 11:07 pm
- Forum: Plugin Releases
- Topic: [CSGO] Damage Print
- Replies: 3
- Views: 9213
[CSGO] Damage Print
Prints received and given damages Usage Type in chat: !dmg or .dmg Install Create a file in: addons/source-python/plugins/damageprint/damageprint.py Copy paste script to damageprint.py Load plugin adding sp plugin load damageprint or type manualy on server console from commands.say import SayComman...
- Wed Dec 28, 2016 11:06 pm
- Forum: Plugin Releases
- Topic: [CSGO] Simple Clantag Changer
- Replies: 0
- Views: 7978
[CSGO] Simple Clantag Changer
Changes clangtag Usage Type in chat: !clan newclan or .clan newclan Install Create a file in: addons/source-python/plugins/clantag/clantag.py Copy paste script to clantag.py Load plugin adding sp plugin load clantag or type manualy on server console from commands.say import SayCommand from cvars im...
- Wed Dec 28, 2016 6:40 pm
- Forum: General Discussion
- Topic: New CS:GO Update broke plugin(s)?
- Replies: 16
- Views: 24353
Re: New CS:GO Update broke plugin(s)?
Wrong clantag and mvps offset? Just a simple plugin to write it to console doesn't seems to work: from commands.say import SayCommand from cvars import ConVarFlags from cvars.public import PublicConVar from plugins.info import PluginInfo from players.entity import Player info = PluginInfo() ...