Search found 416 matches

by decompile
Fri Jul 08, 2016 2:51 pm
Forum: Plugin Development Support
Topic: Remove "Player changed name to YY" message
Replies: 8
Views: 5794

Re: Remove "Player changed name to YY" message

Try this: from events.hooks import EventAction from events.hooks import PreEvent @PreEvent('server_cvar', 'player_team', 'player_connect', 'player_disconnect') def pre_player_team(game_event): return EventAction.STOP_BROADCAST Seems like this does not...
by decompile
Thu Jul 07, 2016 1:19 pm
Forum: Plugin Development Support
Topic: SourceTV Listener
Replies: 22
Views: 14425

SourceTV Listener

Hello, is there something like SourceTV listener? Would be great to use OnBroadcastActive or OnBroadcastEnd, Im currently using tv_autorecord and creating a system behind it. When an autorecord demo ends, it prints "Completed SourceTV demo "auto-20160707-1514-de_dust2.dem", recording ...
by decompile
Mon Jul 04, 2016 12:29 pm
Forum: Plugin Development Support
Topic: Modifying chat with sayfilter but SayCommand doesnt "register"
Replies: 84
Views: 58131

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

How do you filter out the normal messages so it only modifies the playermessages?
by decompile
Sun Jul 03, 2016 10:41 am
Forum: Plugin Development Support
Topic: Effects Box
Replies: 3
Views: 2793

Re: Effects Box

Code: Select all

    box(RecipientFilter(), 10, self.coord1, self.coord2, beam_model.index, beam_model.index, 0, 255, 5, 1, 1, 3, 0, r, g, b, 255, 1)

TypeError: box() takes 3 positional arguments but 18 were given

by decompile
Sun Jul 03, 2016 9:55 am
Forum: Plugin Development Support
Topic: Effects Box
Replies: 3
Views: 2793

Effects Box

Hey,

I was always using the normal way to draw boxes with effects.box,
but now im getting some weird errors which says "Only 3 keywords are avaible, 18 were given"
by decompile
Thu Jun 30, 2016 3:36 pm
Forum: Plugin Development Support
Topic: Hook PyMSQL errors
Replies: 1
Views: 1820

Hook PyMSQL errors

Hey, How can I hook some PyMYSQL errors so I can lets say let it reconnect- or just print a server message with (MySQL Connection Lost.)? I just found that my server is rare'ly just timing out, which gives some error messages in console: pymysql.err.OperationalError: (2013, 'Lost connection to MySQL...
by decompile
Sun Jun 26, 2016 10:24 am
Forum: Plugin Development Support
Topic: [CSGO] Howto respawn a player?
Replies: 21
Views: 12588

Re: [CSGO] Howto respawn a player?

For your second question, there is a cvar who prevents that. I think it was 'mp_ignore_round_win_conditions', atleast in CS:S.
by decompile
Thu Jun 23, 2016 10:05 pm
Forum: Plugin Releases
Topic: [ANY] Infinite Jumping (aka AutoBHop)
Replies: 6
Views: 9502

Re: Infinite Jumping (aka AutoBHop)

I think you need to change the check if the player is in water. In surf, or bhop there are alot bunnyhop slants which use water on it to prevent fall damage (old maps), its just a bit but its enough to prevent the player jumping in it. I checked some sourcemod autobhop's and they are using m_nWaterL...
by decompile
Thu Jun 23, 2016 9:14 pm
Forum: Plugin Development Support
Topic: Modifying chat with sayfilter but SayCommand doesnt "register"
Replies: 84
Views: 58131

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

Don't we need to filter the way, currently its replacing every message send to the player. Like a small check that it comes from a player the message.
by decompile
Thu Jun 23, 2016 3:25 pm
Forum: Plugin Development Support
Topic: Modifying chat with sayfilter but SayCommand doesnt "register"
Replies: 84
Views: 58131

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

EDIT: So after writing with iPlayer, I figured out I can reproduce the exception. Its CPrintToChat, CPrintToChatAll, dont know if it happens with PrintToChat or PrintToChatAll but it does for the C' ones https://github.com/powerlord/sourcemod-snippets/blob/master/scripting/include/morecolors.inc#L39...
by decompile
Wed Jun 15, 2016 9:37 pm
Forum: Plugin Development Support
Topic: Modifying chat with sayfilter but SayCommand doesnt "register"
Replies: 84
Views: 58131

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

When I disable sourcemod, means moving the sourcemod.vdf out of the metamod folder, works fine. No errors.
by decompile
Wed Jun 15, 2016 1:57 pm
Forum: Plugin Development Support
Topic: Modifying chat with sayfilter but SayCommand doesnt "register"
Replies: 84
Views: 58131

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

CS:S Windows! Sure, can test linux if needed. [SP] Caught an Exception: Traceback (most recent call last): File '..\addons\source-python\plugins\chatRanks\chatRanks.py', line 286, in post_user_message_begin memory.make_object(RecipientFilter, args[1]), RuntimeError: Access violation - no RTTI data!
by decompile
Wed Jun 15, 2016 1:08 pm
Forum: Plugin Development Support
Topic: Modifying chat with sayfilter but SayCommand doesnt "register"
Replies: 84
Views: 58131

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

When Im running this, my console gets spammed with:

RuntimeError: Access violation - no RTTI data!
by decompile
Wed Jun 15, 2016 12:54 pm
Forum: Plugin Development Support
Topic: Set MVP Stars (not working?)
Replies: 1
Views: 1859

Set MVP Stars (not working?)

Hey,

I tried to set MVP Stars for all players, seems like it does not work atleast for me.

Syntax: Select all

Player(index).mvp = 123


Forgot to Mention
CS:S windows + linux
by decompile
Sat Jun 11, 2016 4:52 pm
Forum: Plugin Development Support
Topic: Modifying chat with sayfilter but SayCommand doesnt "register"
Replies: 84
Views: 58131

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

decompile, try this (props to Ayuto for original code) from commands.say import SayCommand from memory import Convention, DataType, get_object_pointer, make_object from memory.hooks import PreHook from messages import SayText2 from engines.server import engine_server from messages import UserMessag...
by decompile
Wed Jun 08, 2016 3:18 pm
Forum: Plugin Development Support
Topic: Remove "Player changed name to YY" message
Replies: 8
Views: 5794

Re: Remove "Player changed name to YY" message

Works, awesome thank you!
by decompile
Sat Jun 04, 2016 10:01 am
Forum: Plugin Development Support
Topic: Pickle Save Dict
Replies: 9
Views: 6858

Re: Pickle Save Dict

Ayuto wrote:I have added pickle support for the mathlib classes, so pickling Vector instances will work with version 345:
https://github.com/Source-Python-Dev-Te ... 36c5f685e5


damn awesome, thank you!!
by decompile
Fri Jun 03, 2016 4:27 pm
Forum: Plugin Development Support
Topic: Pickle Save Dict
Replies: 9
Views: 6858

Re: Pickle Save Dict

Works, thank you

Go to advanced search