Raised This Month: $32 Target: $400
 8% 

Showing results 1 to 25 of 166
Search took 0.01 seconds.
Search: Posts Made By: CliptonHeist
Forum: Plugins 05-13-2020, 21:30
Replies: 88
Views: 40,788
Posted By CliptonHeist
Re: [ANY] Spray Exploit Fixer (1.4) [10-May-2020]

Been having this issue with latest version of plugin on HL2:DM Linux, SM 1.10.0.6458L 05/13/2020 - 17:59:45: [SM] Exception reported: Failed to find "CGameClient::FileReceived" signature.
L...
Forum: Plugin/Gameplay Ideas and Requests 04-02-2020, 02:13
Replies: 16
Views: 4,135
Posted By CliptonHeist
Re: [REQ] Ban on disconnect and works with SourceBans ($$)

You do realize how the flow of time works yeah? This thread is almost a year older than the one you linked...
Forum: General 07-26-2019, 06:57
Replies: 6
Views: 2,047
Posted By CliptonHeist
Re: How to enable commands for certain groups

You probably want to be using group overrides for this problem: https://wiki.alliedmods.net/Adding_Groups_(SourceMod)#File_Format
Forum: Plugin/Gameplay Ideas and Requests 07-22-2019, 01:54
Replies: 4
Views: 1,669
Posted By CliptonHeist
Re: No perm no chat

Oh my bad, should be && not ||if(!CheckCommandAccess(Client, "sm_somethingsomething", ADMFLAG_RESERVATION) && !CheckCommandAccess(Client, "sm_somethingsomething", ADMFLAG_VOTE) &&...
Forum: Plugin/Gameplay Ideas and Requests 07-21-2019, 19:41
Replies: 4
Views: 1,669
Posted By CliptonHeist
Re: No perm no chat

A bit ugly but should work:
public void OnPluginStart()
{
AddCommandListener(Listener_Say, "say");
AddCommandListener(Listener_Say, "say_team");
}

public Action Listener_Say(int...
Forum: Plugin/Gameplay Ideas and Requests 07-21-2019, 17:56
Replies: 4
Views: 1,669
Posted By CliptonHeist
Re: No perm no chat

Not sure if you can use | with CheckCommandAccess but you can try it:if(!CheckCommandAccess(Client, "sm_somethingsomething", ADMFLAG_RESERVATION | ADMFLAG_VOTE | ADMFLAG_KICK)) Otherwise you could...
Forum: Scripting 07-21-2019, 17:34
Replies: 7
Views: 2,158
Posted By CliptonHeist
Re: [ H3LP ] Camera Player Model / Weapons

Remove cheat flag from thirdperson command.
Forum: Plugin/Gameplay Ideas and Requests 07-19-2019, 19:05
Replies: 4
Views: 974
Posted By CliptonHeist
Re: [HELP] Add more logos?

https://github.com/splewis/get5/blob/3f793ceb3736d78ba6a92f42631d91cb52f0beb4/scripting/get5_apistats.sp#L45
Forum: Plugin/Gameplay Ideas and Requests 07-19-2019, 16:51
Replies: 4
Views: 1,669
Posted By CliptonHeist
Re: No perm no chat

public void OnPluginStart()
{
AddCommandListener(Listener_Say, "say");
AddCommandListener(Listener_Say, "say_team");
}

public Action Listener_Say(int Client, const char[] sCommand, int...
Forum: Plugin/Gameplay Ideas and Requests 07-19-2019, 16:42
Replies: 4
Views: 974
Posted By CliptonHeist
Forum: Plugin/Gameplay Ideas and Requests 07-18-2019, 16:35
Replies: 5
Views: 1,479
Posted By CliptonHeist
Re: Custom Plugins Creater Needed!

Yeah, I did say it required morecolors and also attached the compiled binary...
Forum: Plugin/Gameplay Ideas and Requests 07-18-2019, 16:26
Replies: 1
Views: 943
Posted By CliptonHeist
Re: [L4D2]Plugin that gives information when the player logs in to the server

https://forums.alliedmods.net/showthread.php?p=683858
Forum: Plugin/Gameplay Ideas and Requests 07-18-2019, 04:37
Replies: 5
Views: 1,479
Posted By CliptonHeist
Re: Custom Plugins Creater Needed!

Here's something I had lying around that should work for 3rd one, doesn't have rings to walk through but they could be easily added using tempents. Requires morecolors to compile.
#include...
Forum: Plugin/Gameplay Ideas and Requests 07-15-2019, 16:59
Replies: 7
Views: 1,452
Posted By CliptonHeist
Re: respawn all dead player

Did I just get fucking bamboozled or something lol?
Forum: Plugin/Gameplay Ideas and Requests 07-15-2019, 12:56
Replies: 7
Views: 1,452
Posted By CliptonHeist
Re: respawn all dead player

That's gonna error out as soon as it reaches an invalid client index.


Check error logs, could be that running command from console is creating errors, or try another respawn plugin:...
Forum: Scripting 06-14-2019, 15:48
Replies: 3
Views: 1,546
Posted By CliptonHeist
Re: Change VIP plugin for all players

Need vip_core to be able to do anything
Forum: Scripting 06-08-2019, 09:07
Replies: 3
Views: 1,239
Posted By CliptonHeist
Re: 'Invalid hook callback specified' but works anyway?

You're trying to unhook an event that isn't hooked.
Forum: Plugin/Gameplay Ideas and Requests 06-06-2019, 10:54
Replies: 1
Views: 739
Posted By CliptonHeist
Re: [help] csgo time to gag plugİn

https://sbpp.github.io/ ?
Forum: Plugin/Gameplay Ideas and Requests 06-03-2019, 22:08
Replies: 8
Views: 2,760
Posted By CliptonHeist
Re: whois plugin?

Here's something I made a little while back, not sure if it's what would be wanted as it only works with connected players.
Forum: Scripting 06-03-2019, 09:55
Replies: 3
Views: 1,238
Posted By CliptonHeist
Re: [L4D2] Retrieving the name/id of the campaign

Just check for the campaign in the map name? e.g. public void CheckCampaign()
{
char sMap[128];
GetCurrentMap(sMap, sizeof(sMap));

if(StrContains(sMap, "c1") != -1)
PrintToChatAll("Dead...
Forum: Scripting 06-01-2019, 05:11
Replies: 21
Views: 6,128
Posted By CliptonHeist
Re: [L4D2] cs_ragdoll usage?

If velfloat already has assigned values you can just pass it into SetEntPropVector directly.
Forum: Scripting 05-25-2019, 19:31
Replies: 11
Views: 2,716
Posted By CliptonHeist
Re: MYSQL - How To Select a row and print it out

if(StrEqual(sName, "");
PrintToChat(Client, "Surname is empty, please give surname.);
Forum: Scripting 05-23-2019, 10:06
Replies: 11
Views: 2,716
Posted By CliptonHeist
Re: MYSQL - How To Select a row and print it out

public void SomeFunction(int Client)
{
if(!IsClientInGame(Client)) return;

char sQuery[1024], userName[64];
GetClientName(Client, userName, sizeof(userName));
...
Forum: Plugin/Gameplay Ideas and Requests 05-22-2019, 01:38
Replies: 13
Views: 2,339
Posted By CliptonHeist
Re: [CS:GO] Ignore VAC check on a client

I really don't understand what you're trying to accomplish here, why aren't you able to use -insecure + the vac checker that Dragokas posted to filter out vac banned players but whitelist yourself...
Forum: Scripting 05-21-2019, 19:32
Replies: 2
Views: 2,055
Posted By CliptonHeist
Re: Problem - Current result set has no fetched rows / plugin.sp::T_LoadData

Not sure if this is the problem, but you can try moving SQL_FieldNameToNum() to after you fetch row.
Showing results 1 to 25 of 166

 
Forum Jump

All times are GMT -4. The time now is 07:10.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode