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

Showing results 1 to 25 of 45
Search took 0.01 seconds.
Search: Posts Made By: MaltSNS
Forum: Coding MM:S Plugins & SM Extensions 08-23-2015, 18:25
Replies: 6
Views: 2,082
Posted By MaltSNS
Re: KeyValues GetName returns wrong value

I'm not sure if you meant to post this in https://forums.alliedmods.net/forumdisplay.php?f=107, but if so I had a similar issue with keyvalues a few months ago. I just lowercased the string after...
Forum: Scripting 08-23-2015, 14:58
Replies: 6
Views: 1,099
Posted By MaltSNS
Re: trigger_multiple

You could just delete them with stripper.
Forum: Scripting 07-28-2015, 18:12
Replies: 23
Views: 10,036
Posted By MaltSNS
Re: [CS:GO] Spectator List

You actually sort of can (in a hackish way.) You need at least 1 selectable item, but \n can be used to create new unselectable white lines without numbers. For example, something like...
Forum: General 05-28-2015, 23:58
Replies: 276
Views: 210,977
Posted By MaltSNS
Re: RELEASE | SPEdit - a lightweight sourcepawn editor - NEW: RCon Querys

Awesome editor.

I'm just wondering, is there any way to change the background color/theme? The solid white starts to hurt my eyes after extended use.
Forum: Scripting 03-23-2015, 10:56
Replies: 6
Views: 853
Posted By MaltSNS
Re: Making a plugin to store Stripper configs in db

OmMapStart seems to fire after stripper already loaded and executed the config. I managed to fix this by just using OnMapEnd and getting the GetNextMap function which has been working.

The only...
Forum: Scripting 03-17-2015, 22:46
Replies: 6
Views: 853
Posted By MaltSNS
Re: Making a plugin to store Stripper configs in db

Doesn't that only work if all your servers are on the same vps/box?
Forum: Scripting 03-16-2015, 07:51
Replies: 6
Views: 853
Posted By MaltSNS
Making a plugin to store Stripper configs in db

I'm trying to figure out a way to make a plugin which will sync stripper config files across multiple servers. Obviously, I'm assuming that SP with SQL isn't the best choice to sync files, but yeah....
Forum: Scripting 03-08-2015, 15:49
Replies: 6
Views: 1,275
Posted By MaltSNS
Re: Not decompile plugin

Outside of alliedmods, its not that uncommon for the source code of useful plugins to be lost.
Forum: Scripting 02-17-2015, 13:22
Replies: 1
Views: 1,015
Posted By MaltSNS
GetAdminFlags question

I'm trying to figure out how to use GetAdminFlags to end up with a string list of admin flags. For example, something similar to "abcdz" or something. I have a vague understanding of how to work with...
Forum: Plugins 01-31-2015, 01:59
Replies: 43
Views: 59,921
Posted By MaltSNS
Re: Hide Chat Triggers

/**
* hidechattriggers.sp
* Lets you specify a list of chat messages to not display
* This file is part of SourceMod, Copyright (C) 2004-2007 AlliedModders LLC
*
* This program is free...
Forum: Scripting 10-03-2014, 01:08
Replies: 3
Views: 1,876
Posted By MaltSNS
Re: [SQL] Commands out of sync; you can't run this command now

Oh awesome, that definitely seems to have helped. Although every 10th time seems to still be a problem, even if its better than before.
Forum: Scripting 09-29-2014, 01:20
Replies: 3
Views: 1,876
Posted By MaltSNS
Re: [SQL] Commands out of sync; you can't run this command now

I've had this problem for months, from what I know, it seems to just be a bug in the mysql extension. For me, I've found that this error is a lot more common when loading data specifically on map...
Forum: Scripting 09-20-2014, 20:00
Replies: 2
Views: 845
Posted By MaltSNS
Re: What could cause this MySQL issue

Looking through my code I'm not really seeing any, but I guess I'm missing something, otherwise I wouldn't be having this problem. Another thing I noticed is that when I try this plugin on css with a...
Forum: Scripting 08-19-2014, 06:40
Replies: 2
Views: 845
Posted By MaltSNS
What could cause this MySQL issue

On my plugin I've been working on, this error started appearing from the database and I'm pretty lost on how to fix it/what could even be causing it.

"Commands out of sync; you can't run this...
Forum: Scripting 06-11-2014, 01:51
Replies: 4
Views: 909
Posted By MaltSNS
Re: Strange SQL Related Crash

I've only tested it with css and tf2 so far.
Forum: Scripting 06-09-2014, 03:17
Replies: 4
Views: 909
Posted By MaltSNS
Strange SQL Related Crash

made a new post
Forum: Scripting 02-25-2014, 16:37
Replies: 4
Views: 654
Posted By MaltSNS
Re: Some code acting weirdly

Thanks, I managed to get them mixed up for some reason. I should of just guessed it was just me being an idiot.
Forum: Scripting 02-25-2014, 16:10
Replies: 4
Views: 654
Posted By MaltSNS
Some code acting weirdly

new totalSpecCount[MAXPLAYERS+1] = 0;

public OnMapStart()
{
CreateTimer(1.0, TrackTimer, _, TIMER_FLAG_NO_MAPCHANGE|TIMER_REPEAT);
}

public Action:TrackTimer(Handle:timer)
{
Forum: Source Servers (SRCDS) 01-02-2014, 16:18
Replies: 1
Views: 854
Posted By MaltSNS
tf2 hint text issue

I'm having a weird issue with hint text on tf2. I have a plugin that sends a constant hint message every .1 second, which works fine on csgo, but is messing up on tf2. The text on the hint message...
Forum: Unapproved Plugins 12-25-2013, 19:36
Replies: 1,249
Views: 453,759
Posted By MaltSNS
Re: [CSS/CSGO] Timer 2.0.1

Free sql servers are way too slow for a plugin like this. Usually your game server host can provide you with a web hosting service that includes an sql server for a pretty cheap price. However that...
Forum: General 11-07-2013, 10:29
Replies: 9
Views: 1,631
Posted By MaltSNS
Re: [CS:GO] SM Crashing Again?

Updating to the newest snapshot of sourcemod 1.5 build fixed the issue for me.
Forum: Scripting 11-03-2013, 01:19
Replies: 4
Views: 1,115
Posted By MaltSNS
trigger_multiple creation problem

I've been trying to learn how to create trigger_multiples using sourcemod. I quickly threw together a script that loads coordinates from sql and uses them to create triggers. All of the information...
Forum: Scripting 10-30-2013, 18:53
Replies: 6
Views: 1,943
Posted By MaltSNS
Re: [CS:GO] Trails, do they still work?

env_spritetrail works fine when its build into a map. Why wouldn't it work with plugins?
Forum: General 10-26-2013, 14:35
Replies: 13
Views: 1,920
Posted By MaltSNS
Re: Hi, quick question.

Just find simple plugins with good comments. One example is the RTV plugin with comments that I attached. Also I found Comax gamings tutorials on youtube helpful for starting off.
Forum: Plugins 10-22-2013, 16:09
Replies: 667
Views: 300,247
Posted By MaltSNS
Re: [CS:S] Timer 1.0.7

I'm pretty sure the world record module is threaded. That's not what causes the lag.
Showing results 1 to 25 of 45

 
Forum Jump

All times are GMT -4. The time now is 05:59.


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