Raised This Month: $12 Target: $400
 3% 

Showing results 1 to 25 of 141
Search took 0.01 seconds.
Search: Posts Made By: JoinedSenses
Forum: Plugins 09-08-2023, 16:25
Replies: 13
Views: 8,876
Posted By JoinedSenses
Re: [Any] Regex Trigger (v2.5.2)

yeah... just don't add "relay" or set it to "0"
Forum: Snippets and Tutorials 03-08-2022, 18:32
Replies: 475
Views: 411,296
Posted By JoinedSenses
Re: [INC] More Colors (1.9.1)

https://github.com/JoinedSenses/SourceMod-IncludeLibrary/blob/master/include/morecolors.inc

Function names and prefixes were modified as to not clash with multicolors include.
Forum: Plugins 02-19-2022, 21:24
Replies: 19
Views: 10,140
Posted By JoinedSenses
Re: [TF2] Sentry Quick Build

If you installed sourcemod, they would be in the sourcemod directory.
Forum: Scripting 02-06-2022, 21:06
Replies: 2
Views: 831
Posted By JoinedSenses
Re: Help with SM 1.11 syntax

TFClassType is defined by sourcemod, so i'd probably opt to just removing the sizes and making it [][] without the sizes.

You could also make a define and use that instead.

#define...
Forum: Plugins 09-17-2021, 23:34
Replies: 41
Views: 43,921
Posted By JoinedSenses
Re: [TF2] SteamRep Checker (Redux)

Dunno if anybody else uses this still, but I updated the plugin to new syntax, moved from steamtools to steamworks (should theoretically support games other than tf2 now), and moved from sourcebans...
Forum: Plugins 09-02-2021, 23:56
Replies: 218
Views: 186,479
Posted By JoinedSenses
Re: Help Menu v0.3 (7/10)

Yeah, probably shouldn't bother with the upload from user HarryPotter. They didnt update any syntax and at first glance it adds in some translations support, a minor client preference related to...
Forum: Plugins 08-21-2021, 14:56
Replies: 19
Views: 10,140
Posted By JoinedSenses
Re: [TF2] Sentry Quick Build

I've just updated gamedata, which should fix the crashing.
Forum: Plugins 05-24-2021, 18:56
Replies: 540
Views: 300,537
Posted By JoinedSenses
Re: Server Hop [v0.8.1, updated 2010-03-21]

Updated ServerHop with a fix for servers expecting a challenge response.

https://github.com/JoinedSenses/TF2-ServerHop
Forum: Plugins 05-22-2021, 17:13
Replies: 540
Views: 300,537
Posted By JoinedSenses
Re: Server Hop [v0.8.1, updated 2010-03-21]

[QUOTE=CrazyKermitRubes;2721825]It looks like I'm getting an error regarding memory locations when loading this plugin:
L 10/18/2020 - 13:00:48: [SM] Exception reported: Invalid memory access
L...
Forum: Plugins 05-22-2021, 17:07
Replies: 540
Views: 300,537
Posted By JoinedSenses
Re: Server Hop [v0.8.1, updated 2010-03-21]

https://github.com/JoinedSenses/sm-ext-socket/

Check releases there for .dll and .so

Includes methodmap support for socket.
Forum: Snippets and Tutorials 01-23-2021, 15:34
Replies: 6
Views: 8,108
Posted By JoinedSenses
Re: [INC] Queue - FIFO

SM doesnt have LinkedList
Forum: Extensions 09-14-2020, 00:42
Replies: 577
Views: 646,520
Posted By JoinedSenses
Re: [EXTENSION] Socket (3.0.1)

https://github.com/JoinedSenses/sm-ext-socket/releases

No need to compile
Forum: Plugins 07-08-2020, 08:59
Replies: 19
Views: 10,140
Posted By JoinedSenses
Re: [TF2] Sentry Quick Build

Project updated to v2.3.2.
- Added entity validation
- Tweaked basic logic for minor efficiency improvements
Forum: Plugins 05-01-2020, 09:40
Replies: 155
Views: 101,516
Posted By JoinedSenses
Re: [Any] Server Whitelist Advanced (1.5.0)

https://github.com/JoinedSenses/SourceMod-IncludeLibrary/blob/master/include/steamtools.inc
Forum: Plugins 04-23-2020, 23:53
Replies: 0
Views: 1,592
Posted By JoinedSenses
[ANY] JumpTracker

.
JumpTracker
v0.1.0


Description:
Jumptracker is a very simple plugin which provides two forwards for plugin integration, notifying them of when a client has jumped and landed.

Although...
Forum: Plugins 04-18-2020, 15:09
Replies: 57
Views: 36,457
Posted By JoinedSenses
Re: [Any] Super Spray Handler (V1.2.3, 5/10/16)

SSH on my repo (https://github.com/JoinedSenses/SM-SuperSprayHandler) has been updated to v.1.3.3

Changes include:

patched an overflow bug caused by using hardcoded sizes not matching size of...
Forum: Scripting 04-15-2020, 11:23
Replies: 2
Views: 3,115
Posted By JoinedSenses
Re: Array-based enum structs will be removed in 1.11

enum struct wQuest
{
int qACT;
int qValue;
int qTARGETS[5];
int qWEAPON;
int qAWARD[6];
int qTYPE;
};
Forum: Scripting 04-06-2020, 17:37
Replies: 6
Views: 9,867
Posted By JoinedSenses
Re: [CS:GO] Smlib

https://github.com/bcserv/smlib/tree/transitional_syntax
Forum: Scripting 04-06-2020, 13:50
Replies: 5
Views: 2,303
Posted By JoinedSenses
Re: Enum Struct in Natives

Plugin

#include <sourcemod>
#include <test>

public APLRes AskPluginLoad2(Handle myself, bool late, char[] error, int err_max) {
RegPluginLibrary("test");
...
Forum: Scripting 04-06-2020, 13:45
Replies: 4
Views: 11,044
Posted By JoinedSenses
Forum: Plugins 04-06-2020, 04:09
Replies: 218
Views: 186,479
Posted By JoinedSenses
Re: Help Menu v0.3 (7/10)

I've updated my version to 0.6, updated syntax, methodmaps, and enum struct.

Project Here (https://github.com/JoinedSenses/HelpMenu)
Forum: Snippets and Tutorials 04-05-2020, 22:53
Replies: 2
Views: 3,063
Posted By JoinedSenses
Re: String Manipulation Functions

// Fuzzy search
stock int FuzzyCompare(const char[] needle, const char[] haystack) {
int hlen = strlen(haystack);
int nlen = strlen(needle);

if (nlen > hlen) {
return false;
}
if...
Forum: Plugins 04-02-2020, 22:38
Replies: 23
Views: 8,538
Posted By JoinedSenses
Re: [ANY] Connection Data

v 0.1.3
Updated to fix unescaped region names.
Forum: Snippets and Tutorials 03-31-2020, 21:40
Replies: 1
Views: 3,548
Posted By JoinedSenses
Methodmapize - Python script to update methodmaps.

Originally created by peace-maker, maintained by myself over the past two years or so - a python script which updates sourcemod provided handles to their respective methodmap through regex.

For...
Forum: Plugins 03-29-2020, 14:44
Replies: 23
Views: 8,538
Posted By JoinedSenses
Re: [ANY] Connection Data

Not really. They both collect similar data. Plugin behavior is different, though I would say this one handles certain logic better. This plugin also doesnt have any additional support for deriving...
Showing results 1 to 25 of 141

 
Forum Jump

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


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