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

[CS:GO] Multi-1v1 (v1.1.10, 2021-10-30)


Post New Thread Reply   
 
Thread Tools Display Modes
bret
Junior Member
Join Date: Feb 2015
Old 02-18-2015 , 17:18   Re: [CS:GO] Multi-1v1 (v1.0.0, 2015-2-4)
Reply With Quote #601

Quote:
Originally Posted by splewis View Post
Did you actually recompile the plugin and upload the changed multi1v1.smx file?
Well that would make sense, wouldn't it.. I've not done it before but I'll give it a shot. Time to crawl into a hole and hide from embarrassment

ETA: Great, recompiled it and it's all working now. Apologies for making a mountain out of a molehill!

Last edited by bret; 02-18-2015 at 17:52.
bret is offline
TUSK3N1337
SourceMod Donor
Join Date: Dec 2013
Location: Sweden
Old 02-22-2015 , 13:17   Re: [CS:GO] Multi-1v1 (v1.0.0, 2015-2-4)
Reply With Quote #602

Hello splewis, I assume you have already answered this request but I have a arena server with 24 slots and its very popular thank you for creating this mod! I have the plugin knife_upgrade.smx and that is causing the server to crash very often, and now when I removed it people start to freak out . So my question is would you add support to the knife menu or do you already have added it? ty.

btw h3bus has that feature in his dm plugin, "dm_weapons_allow_3rd_party" and it works great.

https://forums.alliedmods.net/showthread.php?t=243254

https://forums.alliedmods.net/showpo...&postcount=461

https://forums.alliedmods.net/showpo...&postcount=463
__________________

Last edited by TUSK3N1337; 02-22-2015 at 13:18.
TUSK3N1337 is offline
Send a message via Skype™ to TUSK3N1337
splewis
Veteran Member
Join Date: Feb 2014
Location: United States
Old 02-22-2015 , 15:17   Re: [CS:GO] Multi-1v1 (v1.0.0, 2015-2-4)
Reply With Quote #603

Quote:
Originally Posted by TUSK3N1337 View Post
Hello splewis, I assume you have already answered this request but I have a arena server with 24 slots and its very popular thank you for creating this mod! I have the plugin knife_upgrade.smx and that is causing the server to crash very often, and now when I removed it people start to freak out . So my question is would you add support to the knife menu or do you already have added it? ty.

btw h3bus has that feature in his dm plugin, "dm_weapons_allow_3rd_party" and it works great.

https://forums.alliedmods.net/showthread.php?t=243254

https://forums.alliedmods.net/showpo...&postcount=461

https://forums.alliedmods.net/showpo...&postcount=463

I've had an open issue for it for a few months now: https://github.com/splewis/csgo-multi-1v1/issues/50

If anyone else wants to work on it that's the quickest way of getting it added.
__________________

Last edited by splewis; 02-22-2015 at 15:17.
splewis is offline
Sketchy
Senior Member
Join Date: Nov 2010
Old 02-23-2015 , 08:57   Re: [CS:GO] Multi-1v1 (v1.0.0, 2015-2-4)
Reply With Quote #604

I'm having a hard time getting the !top command to do -anything-... It doesnt even bring up the MotD window. The rest of the commands, (!rank, !rating, !stats) all work fine. The URL for the !top command works fine in my browser.

This works fine: sm_multi1v1_stats_url "http://cmgsourceclan.net/csgo1v1/redirect.php?id={USER}&server_id={SERVER}"

This does not work: sm_multi1v1_top_url "http://cmgsourceclan.net/csgo1v1/"
I've tried variations of the top_url with and with redirect.php etc

Any suggestions ?

Also, since I updated the plugin from 0.52 to 1.0 , I noticed that the "rank" chat command which used to bring up players HLStats stats, now seems to get swallowed up by multi1v1_online_stats_viewer.smx and I was wondering how I might fix that. I'd prefer to keep the stat commands for this plugin as !stats, !ratings, !rank, !top and leave rank for HLStats.

Is this the problem?
Code:
public Action OnClientSayCommand(int client, const char[] command, const char[] sArgs) {
    char chatTriggers[][] = { "rank", ".rank" };
    for (int i = 0; i < sizeof(chatTriggers); i++) {
        if (strcmp(sArgs[0], chatTriggers[i], false) == 0) {
            ShowStatsForPlayer(client, client);
        }
    }
    return Plugin_Continue;
}

Last edited by Sketchy; 02-23-2015 at 09:34.
Sketchy is offline
splewis
Veteran Member
Join Date: Feb 2014
Location: United States
Old 02-23-2015 , 18:40   Re: [CS:GO] Multi-1v1 (v1.0.0, 2015-2-4)
Reply With Quote #605

Quote:
Originally Posted by Sketchy View Post
I'm having a hard time getting the !top command to do -anything-... It doesnt even bring up the MotD window. The rest of the commands, (!rank, !rating, !stats) all work fine. The URL for the !top command works fine in my browser.
What version of the web interface are you using? I remember having to update the redirect.php page to get it to work for the top url not too long before the 1.0.0 release.

Quote:
Originally Posted by Sketchy View Post
Also, since I updated the plugin from 0.52 to 1.0 , I noticed that the "rank" chat command which used to bring up players HLStats stats, now seems to get swallowed up by multi1v1_online_stats_viewer.smx and I was wondering how I might fix that. I'd prefer to keep the stat commands for this plugin as !stats, !ratings, !rank, !top and leave rank for HLStats.

Is this the problem?
Yes. It seems silly to me to have "!rank" and "rank" go to totally different stats systems, though.
__________________

Last edited by splewis; 02-23-2015 at 18:41.
splewis is offline
Gdk
Member
Join Date: Oct 2014
Old 02-26-2015 , 10:30   Re: [CS:GO] Multi-1v1 (v1.0.0, 2015-2-4)
Reply With Quote #606

Not sure if there is a way to do this by default but in the database you should change the collation of the 'name' column to something else besides latin1. This is because many people use special characters ✪ etc. they will show up as a '?' if you keep the latin1. I changed it to utf_8_ci using MySQL workbench but I believe the command to change is:

ALTER TABLE `game_servers_database`.`multi1v1_stats` CHANGE COLUMN `name` `name` VARCHAR(72) CHARACTER SET 'utf8' COLLATE 'utf8_unicode_ci' NOT NULL DEFAULT '' ;
Gdk is offline
anubias
Junior Member
Join Date: Apr 2014
Old 03-03-2015 , 10:42   Re: [CS:GO] Multi-1v1 (v1.0.0, 2015-2-4)
Reply With Quote #607

Hi i want to use this plugin in knife server,how to remove all guns?
anubias is offline
xzibit81
New Member
Join Date: Mar 2015
Old 03-03-2015 , 11:03   Re: [CS:GO] Multi-1v1 (v1.0.0, 2015-2-4)
Reply With Quote #608

Not sure if anyone else experiences some Laags while using Multi 1vs1.
I got most likely endround / last kill lags on my server.

I updated to the newest Multi 1vs1 Version and Sourcemod Version.
It's working all the time but then we have this lags sometimes and i don't know how to fix it.
Already installed a fresh ubuntu 14.04 LTS with only 1 CS:GO Server instance and this Plugin and it keeps lagging at the End of a Round. Also i disabled all unneeded Plugins from Souremod etc.

Server-Hardware:
core i5 750 @ 2,66GHZ
6GB DDR3 RAM
1000Mbit up and down

Hope someone can help me out with this.

Cheers

Last edited by xzibit81; 03-03-2015 at 11:26.
xzibit81 is offline
splewis
Veteran Member
Join Date: Feb 2014
Location: United States
Old 03-03-2015 , 16:31   Re: [CS:GO] Multi-1v1 (v1.0.0, 2015-2-4)
Reply With Quote #609

Quote:
Originally Posted by anubias View Post
Hi i want to use this plugin in knife server,how to remove all guns?
Use a plugin to remove the other round types and add a knife round type.

PHP Code:
#include <sourcemod>
#include <smlib>
#include "include/multi1v1.inc"

public Plugin myinfo = {
    
name "CS:GO Multi1v1: knife only addon",
    
author "splewis",
    
description "Only leaves knife rounds active",
    
version "1.0.0",
    
url "https://github.com/splewis/csgo-multi-1v1"
};

public 
void Multi1v1_OnRoundTypesAdded() {
    
Multi1v1_ClearRoundTypes();
    
Multi1v1_AddRoundType("Knife""knife"KnifeHandlerMulti1v1_NullChoiceMenufalse);
}

public 
void KnifeHandler(int client) {
    
Client_RemoveAllWeapons(client""true);
    
Client_SetArmor(client100);
    
GivePlayerItem(client"weapon_knife");

__________________

Last edited by splewis; 03-03-2015 at 16:31.
splewis is offline
xzibit81
New Member
Join Date: Mar 2015
Old 03-06-2015 , 09:49   Re: [CS:GO] Multi-1v1 (v1.0.0, 2015-2-4)
Reply With Quote #610

Quote:
Originally Posted by xzibit81 View Post
Not sure if anyone else experiences some Laags while using Multi 1vs1.
I got most likely endround / last kill lags on my server.

I updated to the newest Multi 1vs1 Version and Sourcemod Version.
It's working all the time but then we have this lags sometimes and i don't know how to fix it.
Already installed a fresh ubuntu 14.04 LTS with only 1 CS:GO Server instance and this Plugin and it keeps lagging at the End of a Round. Also i disabled all unneeded Plugins from Souremod etc.

Server-Hardware:
core i5 750 @ 2,66GHZ
6GB DDR3 RAM
1000Mbit up and down

Hope someone can help me out with this.

Cheers
No one experiencing the same thing ?
Even if i try to switch to Debian there are endround lags "only" on Server with Multi1vs1.
So i think it's a plugin and or sourcemod related issue.

Thanks for any help !

Last edited by xzibit81; 03-06-2015 at 09:51.
xzibit81 is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 19:39.


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