Search found 88 matches

by Kill
Sun Mar 12, 2017 1:51 pm
Forum: Plugin Development Support
Topic: [CSGO] Problem with clan tag
Replies: 8
Views: 6892

Re: [CSGO] Problem with clan tag

existenz wrote:Thanks for your answer.
I will look at the settings package.

So we can't give an helmet in Csgo ?

Sorry I thought it was better one post to avoid spam.


I believe

Syntax: Select all

has_helmet
only tells if a player has one or not, not give it.
by Kill
Thu Feb 23, 2017 11:30 pm
Forum: Plugin Requests
Topic: Can Anybody port SM Plugin to Source Python?
Replies: 19
Views: 16593

Re: Can Anybody port SM Plugin to Source Python?

decompile wrote:first of all we cant do anything without .sp

Off topic:
I understand having the source code would help, but why can't You do anything without it?
by Kill
Wed Feb 22, 2017 1:23 pm
Forum: General Discussion
Topic: Disable choose team
Replies: 5
Views: 5594

Re: Disable choose team

satoon101 wrote:-

Thought [ code=Python ] would do the trick, done, thanks.
by Kill
Tue Feb 21, 2017 1:25 pm
Forum: General Discussion
Topic: Disable choose team
Replies: 5
Views: 5594

Re: Disable choose team

I would like to have some info too about this. Does anyone know? Try this: from commands.client import ClientCommandFilter from commands import CommandReturn @ClientCommandFilter def on_client_command(command, index): if command[0] == "jointeam": return CommandReturn.BLOCK
by Kill
Sun Feb 19, 2017 7:58 pm
Forum: Plugin Development Support
Topic: Chat colors
Replies: 6
Views: 5211

Re: Chat colors

velocity wrote:Not really a solution, by not writing anything in console at all


But does it write in chat in colors?
by Kill
Sun Feb 19, 2017 6:45 pm
Forum: Plugin Development Support
Topic: Chat colors
Replies: 6
Views: 5211

Re: Chat colors

velocity wrote:

Syntax: Select all

import colors
from messages import SayText

SayText('{}Hello'.format(colors.WHITE)).send()


Simple code and it works, but how do I avoid FFF000F in console?



Try using sayText2.
by Kill
Thu Jan 19, 2017 6:33 pm
Forum: Plugin Development Support
Topic: Modifying chat with sayfilter but SayCommand doesnt "register"
Replies: 84
Views: 58076

Re: Modifying chat with sayfilter but SayCommand doesnt "register"

Oh ye, good idea but Im still more for the way of changing the actual message instead of blocking it. Sourcemod uses this method with a nice "api/package". https://forums.alliedmods.net/showthread.php?t=286913 A plugin with available API to hook and change clients name and message strings...
by Kill
Thu Jan 19, 2017 2:08 pm
Forum: General Discussion
Topic: [CS:GO] Problem with SourceMod plugin
Replies: 15
Views: 13232

Re: [CS:GO] Problem with SourceMod plugin

If You run the plugin without SP loaded, the error does not show up?
by Kill
Mon Jan 09, 2017 6:05 pm
Forum: Plugin Requests
Topic: [HL2:DM] join to Teamspeak
Replies: 8
Views: 7595

Re: [HL2:DM] join to Teamspeak

Painkiller wrote:Why does it sound dangerous?

Because simply with a command, You have the ability to launch an external application.
by Kill
Mon Jan 09, 2017 3:12 pm
Forum: Plugin Requests
Topic: [HL2:DM] join to Teamspeak
Replies: 8
Views: 7595

Re: [HL2:DM] join to Teamspeak

Launch Teamspeak with an ingame command? That sounds dangerous.
by Kill
Sun Jan 08, 2017 3:31 pm
Forum: Plugin Releases
Topic: Sweet and Sour Chicken v1.1
Replies: 3
Views: 5040

Re: Sweet and Sour Chicken

Haha, no more chickens killing

Added Spanish translation.
by Kill
Fri Jan 06, 2017 8:07 am
Forum: Plugin Requests
Topic: [HL2:DM] Webshortcut
Replies: 6
Views: 7239

Re: [HL2:DM] Webshortcut

La Muerte wrote:Do you mean a plugin that opens a website in motd when you type a specific command?

E.g. !google opening http://www.google.be in motd?


I'd say Yes.

https://forums.alliedmods.net/showthrea ... 4?t=173334
by Kill
Mon Jan 02, 2017 10:48 am
Forum: Plugin Requests
Topic: Skin Chooser
Replies: 16
Views: 14216

Re: Skin Chooser

tnarocks wrote:Would you be able to work on it kill?

I'd love to, but I don't have the required knowledge for it, sorry :\
by Kill
Sun Jan 01, 2017 8:04 pm
Forum: Plugin Requests
Topic: Skin Chooser
Replies: 16
Views: 14216

Re: Skin Chooser

tnarocks wrote:So what is going on with this request? Is there a way to make a skin chooser for sp or just port one from sm? let me know!

I'm kinda 100% sure it is possible with SP. But it's kind of takes a lot of effort.
by Kill
Sun Jan 01, 2017 8:02 pm
Forum: Whatever
Topic: Ranking PHP
Replies: 7
Views: 8778

Re: Ranking PHP

So würde erst mal dieses Script ausprobieren, um zu sehen ob überhaupt Daten geholt werden können. Wenn es funktioniert kann man sich Gedanken über die Formatierung machen. Tausche für die Verwendung einfach folgende Strings mit den richtigen Daten aus: TABELLENNAME localhost (bleibt meistens gleic...
by Kill
Mon Dec 26, 2016 2:17 pm
Forum: General Discussion
Topic: Merry Xmas!
Replies: 5
Views: 5729

Re: Merry Xmas!

Happy Xmas!
by Kill
Thu Nov 10, 2016 9:07 pm
Forum: Plugin Requests
Topic: [HL2:DM] Conquest Mod
Replies: 11
Views: 9912

Re: [HL2:DM] Conquest Mod

Painkiller wrote:Nobody an idia ?


Please allow me to correct You with my 90%-broke English,
"Nobody has an idea?"
by Kill
Sat Nov 05, 2016 5:20 pm
Forum: Plugin Releases
Topic: Auto Respawn
Replies: 22
Views: 19788

Re: Auto Respawn

satoon101 wrote:The reason L'In20Cible mentions that is that we now do that check automatically:
https://github.com/Source-Python-Dev-Te ... 2d81a67e4c

Okay, thanks!
by Kill
Sat Nov 05, 2016 4:50 pm
Forum: Plugin Releases
Topic: Auto Respawn
Replies: 22
Views: 19788

Re: Auto Respawn

Also, the following: Delay(ar_delay.get_int(), respawn, player.userid) def respawn(userid): try: player = Player.from_userid(userid) except ValueError: return if player.dead: # is player dead? player.spawn() Could now simply be: player.delay(ar_delay.get_...
by Kill
Sat Nov 05, 2016 3:42 pm
Forum: Plugin Releases
Topic: Auto Respawn
Replies: 22
Views: 19788

Re: Auto Respawn

Ayuto wrote:...

Aaaah, Thanks!
Updated!

Go to advanced search