Rules
FAQ
Members List
Search
Register
Login
Raised This Month: $183
Target: $400
45%
Page 1 of 20
1
2
3
11
>
Last
»
Showing results 1 to 25 of 500
Search took
0.04
seconds.
Search:
Posts Made By:
asherkin
Forum:
Scripting
01-22-2021, 06:42
Replies:
4
Want for urldecode method, need help with rewrite from C
Views:
431
Posted By
asherkin
Re: Want for urldecode method, need help with rewrite from C
PrintToServer(buffer); // ...you not see '%' symbols in console, function is formatting it.
This is dangerous, the correct usage is:
PrintToServer("%s", buffer);
Forum:
Scripting
01-16-2021, 08:19
Replies:
6
[CS:GO] Getting data from the netprop "m_szCrosshairCodes"
Views:
1,043
Posted By
asherkin
Re: [CS:GO] Getting data from the netprop "m_szCrosshairCodes"
Did you try FakeClientCommandKeyValues?
Forum:
Source Servers (SRCDS)
01-14-2021, 06:27
Replies:
4
Server crashes, Accelerator Logs
Views:
334
Posted By
asherkin
Re: Server crashes, Accelerator Logs
Source.Python does not work very well with Accelerator as it intentionally causes crashes which it expects to handle, this is widely considered an unsafe practice. They have a note on it in their...
Forum:
General
01-06-2021, 09:50
Replies:
10
Does SM has any prevention from copy by another plugins?
Views:
1,521
Posted By
asherkin
Re: Does SM has any prevention from copy by another plugins?
Yes
Forum:
Extensions
12-30-2020, 07:40
Replies:
359
Accelerator - Crash Reporting That Doesn't Suck
Views:
150,946
Posted By
asherkin
Re: Accelerator - Crash Reporting That Doesn't Suck
I'm afraid I can't reproduce any issues with Accelerator and SourceMod 1.11, and there a good number of crash reports in Throttle from servers running SM 1.11 on both Windows and Linux.
Forum:
General
12-28-2020, 18:53
Replies:
6
Solved
[CS:S]Disconnect: Metamod Source or Sourcemod Violation
Views:
538
Posted By
asherkin
Re: [CS:S]Disconnect: Metamod Source or Sourcemod Violation
You should install SRCDS on your computer and use SourceMod there - it isn't supported as a client plugin for listen servers.
Forum:
General
12-28-2020, 16:17
Replies:
3
[CSGO] Unable to buy grenades/armor due to donating
Views:
925
Posted By
asherkin
Re: [CSGO] Unable to buy grenades/armor due to donating
https://wiki.alliedmods.net/Upgrading_sourcemod
Forum:
General
12-28-2020, 09:38
Replies:
3
[CSGO] Unable to buy grenades/armor due to donating
Views:
925
Posted By
asherkin
Re: [CSGO] Unable to buy grenades/armor due to donating
Your SourceMod version is outdated.
Forum:
General
12-28-2020, 09:37
Replies:
6
Solved
[CS:S]Disconnect: Metamod Source or Sourcemod Violation
Views:
538
Posted By
asherkin
Re: [CS:S]Disconnect: Metamod Source or Sourcemod Violation
You're being kicked because you have MM:S or SM loaded into your game client.
Forum:
Plugin/Gameplay Ideas and Requests
12-26-2020, 13:07
Replies:
3
Requested anticheat
Views:
375
Posted By
asherkin
Re: Requested anticheat
Far too often these just turn out to be SMAC modified with a couple of advertising messages.
Forum:
Source Servers (SRCDS)
12-26-2020, 09:56
Replies:
8
[CSGO] Problems with purchasing armour/equipment
Views:
985
Posted By
asherkin
Re: [CSGO] Problems with purchasing armour/equipment
You need to update SourceMod, if updating SourceMod didn't solve it, you probably didn't update SourceMod correctly.
https://wiki.alliedmods.net/Upgrading_sourcemod
Forum:
Scripting
12-26-2020, 09:51
Replies:
5
Solved
[TF2] EquipPlayerWeapon crash
Views:
581
Posted By
asherkin
Re: [TF2] EquipPlayerWeapon crash
It is forbidden for plugins to load SM's gamedata files, they're not a public API and are not part of the stability guarantees (you're also trying to load a child file of a gamedata file set instead...
Forum:
Coding MM:S Plugins & SM Extensions
12-22-2020, 08:41
Replies:
1
CSGO correct usage of manual hooks
Views:
802
Posted By
asherkin
Re: CSGO correct usage of manual hooks
I don't think there is anything wrong with your hook, the crash is quite far down the call stack - based on the stack trace and your code, I'd say the game just isn't liking you calling Weapon_Switch...
Forum:
Scripting
12-22-2020, 08:35
Replies:
2
Solved
IsPluginDebugging() methods
Views:
672
Posted By
asherkin
Re: IsPluginDebugging() methods
A long, long, long time ago plugins had to opt-in to stack trace recording on plugin errors, that is not the case any more.
That native just returns true as long as the plugin is fully loaded:...
Forum:
Plugins
12-22-2020, 08:23
Replies:
2
[CS:GO] Discord Invitelink with translations file | !discord/!dc
Views:
529
Posted By
asherkin
Re: Discordlink Plugin with translations file | !discord/!dc
SourceMod plugins must be distributed with source code: https://www.sourcemod.net/license.php
Forum:
General
12-19-2020, 15:12
Replies:
1
A lot of ongoing SQL connections cause problems
Views:
431
Posted By
asherkin
Re: A lot of ongoing SQL connections cause problems
Connections are managed by individual plugins - for most you should expect the database connection to be open for the entirety of the time the plugin is loaded. A large number of connections is not...
Forum:
General
12-07-2020, 12:55
Replies:
341
L4D2 - The Last Stand Update - Issues and Bugs - Mega Thread
Views:
47,288
Posted By
asherkin
Re: L4D2 - The Last Stand Update - Issues and Bugs - Mega Thread
There is a patch in SM core that works around a similar StringTable issue in CS:GO, I wonder if it just needs enabling for L4D2 after whatever they changed. Might be an avenue of exploration for...
Forum:
General
12-07-2020, 12:31
Replies:
3
Solved
Cant get Sourcemod and Metamod running(Yes, again)
Views:
338
Posted By
asherkin
Re: Cant get Sourcemod and Metamod running(Yes, again)
You shouldn't be downloading any VDF files, follow the install instructions on the wiki: https://wiki.alliedmods.net/Installing_Metamod:Source
Your issue is that you've "installed" a bunch of...
Forum:
Scripting
12-06-2020, 06:21
Replies:
6
Push Function to ArrayList..
Views:
655
Posted By
asherkin
Re: Push Function to ArrayList..
You need to decouple the API from the implementation in your head. The SourcePawn language rules were changed to consider Function as a separate type (like char[]) rather than a specialised int (like...
Forum:
Scripting
12-06-2020, 06:07
Replies:
3
SOCKET! Socket splits a packet into parts!
Views:
778
Posted By
asherkin
Re: SOCKET! Socket splits a packet into parts!
TCP is a streaming protocol, the application protocol and receiving end need to deal with any size fragments and reconstructing the sent data (due to naggle you can even have multiple writes sent as...
Forum:
Extensions
12-03-2020, 04:40
Replies:
359
Accelerator - Crash Reporting That Doesn't Suck
Views:
150,946
Posted By
asherkin
Re: Accelerator - Crash Reporting That Doesn't Suck
Yes - the gamedata is just for some enhanced functionality.
Forum:
Source Servers (SRCDS)
11-30-2020, 19:04
Replies:
4
Poll:
[URGENT] Unicode Data??????? Translation Data Crashing Servers And Clients
Views:
834
Posted By
asherkin
Re: [URGENT] Unicode Data??????? Translation Data Crashing Servers And Clients
That is not correct.
Forum:
General
11-30-2020, 06:00
Replies:
6
Dedicated or Listen server to test plugins?
Views:
1,691
Posted By
asherkin
Re: Dedicated or Listen server to test plugins?
Moved your thread to the right section - please be specific about where you're posting (the section you posted in has a sticky with some guidance).
SourceMod does not support Listen Servers, so...
Forum:
Scripting
11-27-2020, 09:34
Replies:
43
Sticky:
Enum Structs Available This Holiday Season
Views:
44,000
Posted By
asherkin
Re: Enum Structs Available This Holiday Season
Newdecl constructs (like methodmaps and enum structs) enforce newdecls on their interior items.
Forum:
Suggestions / Requests
11-26-2020, 19:23
Replies:
9
Solved
Anyone know what plugin is this?
Views:
477
Posted By
asherkin
Re: Anyone know what plugin is this?
You should not run plugins you don't have source code for, they could be malware.
Showing results 1 to 25 of 500
Page 1 of 20
1
2
3
11
>
Last
»
Forum Jump
User Control Panel
Private Messages
Subscriptions
Who's Online
Search Forums
Forums Home
Server Discussion
Source Servers (SRCDS)
HL1 Servers (HLDS)
AMX Mod X
News
Bug Reports
General
Off-Topic
Plugins
Suggestions / Requests
Approved Plugins
New Plugin Submissions
Unapproved/Old Plugins
Translation Request
High-Traffic Plugins
GunGame
UAIO (Ultimate All-In-One Plugin)
xREDIRECT
CSDM
AMX Super
RuneMod
Zombie Plague Mod
SuperHero Mod
News
Tech Support
Scripting Help
Off-Topic / General Chat
Heroes
Suggestions / Requests
Approved Heroes
New Submissions
Unapproved/Old Heroes
Module Heroes
SuperHero Mod Stats - By 123
(OLD) Bug Reports
Scripting
Scripting Help
Code Snippets/Tutorials
Module Coding
Donor Access
SourceMod
News
General
Plugins
Plugins
Unapproved Plugins
Plugin/Gameplay Ideas and Requests
High-Traffic Plugins
SourceMod Anti-Cheat
Zombie:Reloaded
SourceBans / SourceBans++
VSH / Freak Fortress
Store
SM_Hosties
HLstatsX:CE
Scripting
Extensions
Snippets and Tutorials
Donor Access
Metamod: Source
Metamod:Source Plugins
Metamod:Source Questions
Coding MM:S Plugins & SM Extensions
Hosted Stuff
Asherkin's Plugins
TFDodgeball
TF2Items
SteamTools
Bail's Plugins
CSDM
CS:S DM
Off-Topic & Trash
Off-Topic
Trash
All times are GMT -4. The time now is
02:26
.
DMCA
-
Archive
-
Top
Powered by vBulletin®
Copyright ©2000 - 2021, vBulletin Solutions, Inc.
Theme made by Freecode