AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Plugins (https://forums.alliedmods.net/forumdisplay.php?f=108)
-   -   [CS:GO] Multi-1v1 (v1.1.10, 2021-10-30) (https://forums.alliedmods.net/showthread.php?t=241056)

TUSK3N1337 10-28-2014 19:50

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
http://www.sourcemod.net/snapshots.php

TUSK3N1337 10-28-2014 19:58

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
Quote:

Originally Posted by TUSK3N1337 (Post 2217142)
Hello everyone this maybe have been posted before but Im gonna post this again since im having a hard time installing this plugin.


The first message we have on our MYSQL database is;

Code:

Notice: Undefined index: server_id in D:\xampp\htdocs\multiarena\web\index.php on line 47

Warning: mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given in D:\xampp\htdocs\multiarena\web\index.php on line 50
User not found.


And then we have another problem the plugin multi1v1_online_stats_viewer.smx does not want to load here it is what it says;

Code:

sm_rcon sm plugins load multi1v1_online_stats_viewer
[SM] Plugin multi1v1_online_stats_viewer.smx failed to load: Could not find required plugin "multi1v1".


And I have the multi1v1 fully working with arenas etc with elo etc but I can't type in !stats, !rank it just comes up in console tried to look up for command.....



ok scratch the last one we have problems with our MYSQL database and we get this message,

Code:

Notice: Undefined index: server_id in D:\xampp\htdocs\multiarena\web\index.php on line 47

Warning: mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given in D:\xampp\htdocs\multiarena\web\index.php on line 50
User not found.


keigel2001 10-28-2014 20:56

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
I think the serverID column is missing in the last git readme and if the user hasn't the right to create new columns or indizes, there might be a problem.

jad3z 10-28-2014 21:07

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
http://i.imgur.com/IYu3MA6.png

-_-

EDIT :
compiled after replacing the code live from :
https://github.com/splewis/csgo-mult...1v1/generic.sp
noticed that the download from github 0.5.2 is different then the live one on github itself.
I will start over again and this time from the live files from github.
Rather wait till the new release tho x()

splewis 10-29-2014 12:22

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
I think there was just at typo in the query when the serverID stuff was added. You can try the web interface from webfix branch and see if it fixes it: https://github.com/splewis/csgo-multi-1v1/tree/webfix

edit:
Ignore what I had earlier. It should be fixed on the master branch now. Note you do need an updated version of the plugin (e.g. where serverID is added).

TUSK3N1337 10-29-2014 17:39

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
I am so confused where can I get the web interface for the 0.5.2 version? I think I have the 0.5.2 version of the plugin and the dev version of the web interface.



My problem is that everything works fine here http://arena.surfburken.se/ but when it comes to in-game none of the commands works (!rank, !stats etc).

splewis 10-29-2014 18:23

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
Quote:

Originally Posted by TUSK3N1337 (Post 2217508)
I am so confused where can I get the web interface for the 0.5.2 version? I think I have the 0.5.2 version of the plugin and the dev version of the web interface.



My problem is that everything works fine here http://arena.surfburken.se/ but when it comes to in-game none of the commands works (!rank, !stats etc).

There's been no formal release of the web version. You could go back to the 0.5.2 release commit and pull the web interface from back then, though: https://github.com/splewis/csgo-mult...tree/0.5.2/web

Note that the !stats command is built into multi1v1.smx in 0.5.2, but has been moved into a separate plugin for the next version. (also realize you need cl_disablehtmlmotd 0 to use it)

If you're still having trouble post the value of sm_multi1v1_stats_url in cfg/sourcemod/multi1v1/multi1v1.cfg

TUSK3N1337 10-29-2014 18:33

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
I do have cl_disablehtmlmotd 0 here is my multi1v1.cfg

Code:

// This file was auto-generated by SourceMod (v1.6.3-dev+4582)
// ConVars for plugin "multi1v1.smx"


// Should the plugin attempt to use the auto-update plugin?
// -
// Default: "0"
sm_multi1v1_autoupdate "1"

// Should the plugin block radio commands from being broadcasted
// -
// Default: "1"
sm_multi1v1_block_radio "1"

// Should players see the guns menu automatically on their first connect?
// -
// Default: "0"
sm_multi1v1_guns_menu_first_connect "1"

// Should the lastTime field store when players connect?
// -
// Default: "0"
sm_multi1v1_record_times "0"

// Roundtime (in seconds)
// -
// Default: "30"
// Minimum: "5.000000"
sm_multi1v1_roundtime "30"

// URL to send player stats to. For example: http://csgo1v1.splewis.net/redirect_stats/. The accountID is appened to this url for each player.
// -
// Default: ""
sm_multi1v1_stats_url "http://arena.surfburken.se/redirect_stats/"

// Should we use a database to store stats and preferences
// -
// Default: "0"
sm_multi1v1_use_database "1"

// Set to 1 to get info about all spawns the plugin read - useful for map creators testing against the plugin.
// -
// Default: "0"
sm_multi1v1_verbose_spawns "0"


splewis 10-29-2014 19:04

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
I believe you should be using

Code:

http://arena.surfburken.se/redirect.php?id=

TUSK3N1337 10-29-2014 19:07

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
Quote:

Originally Posted by splewis (Post 2217531)
I believe you should be using

Code:

http://arena.surfburken.se/redirect.php?id=


I have now changed it and it still does not work it seems like the command does not work at all.


Code:

] !rank
Unknown command: !rank
Tried to look up command say as if it were a variable.


splewis 10-29-2014 19:19

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
Quote:

Originally Posted by TUSK3N1337 (Post 2217532)
I have now changed it and it still does not work it seems like the command does not work at all.


Code:

] !rank
Unknown command: !rank
Tried to look up command say as if it were a variable.


... are you typing that in console? !rank would be a chat alias for sm_rank.

https://github.com/splewis/csgo-mult...lti1v1.sp#L177

TUSK3N1337 10-29-2014 19:26

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
Oh im sorry I seem to have been so desperate to type it in console to lol and I copied that but yeah I know that you type it in chat, !rank and sm_rank in console but it just says

Code:

Tried to look up command say as if it were a variable.
[HeadAdmin]No Pills No Kills :  !rank



I am now using the 0.5.2 plugin and web interface and it does not seem to know any of the commands !rank, !stats.


also getting this in error logs;

Code:

L 10/30/2014 - 00:27:34: [SM] Unable to load plugin "multi1v1_online_stats_viewer.smx": Could not find required plugin "multi1v1"
L 10/30/2014 - 00:27:40: [multi1v1.smx] player No Pills No Kills had arena -1 on his spawn


splewis 10-29-2014 19:34

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
I don't understand why you're using multi1v1_online_stats_viewer at all. It's features are builtin into 0.5.2. It's not going to load if you don't have a development build of multi1v1.smx.

h3bus 10-30-2014 03:52

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
splewis, would it be possible to handle bots as players (without stats)? Or at least to disable kicking for inactivity if player is alone on server?

Currently the first player than connect to the server has to wander around the map waiting for its first opponent.

splewis 10-30-2014 12:14

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
Quote:

Originally Posted by h3bus (Post 2217725)
splewis, would it be possible to handle bots as players (without stats)?

Yup. I don't plan to do that myself though.

Quote:

Originally Posted by h3bus (Post 2217725)
Or at least to disable kicking for inactivity if player is alone on server?

I'm not sure what you expect me to do here. I think the most popular afk manager plugin has a cvar for the minimum number of players before taking effect.

h3bus 10-30-2014 12:56

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
Quote:

Originally Posted by splewis (Post 2217891)
I'm not sure what you expect me to do here. I think the most popular afk manager plugin has a cvar for the minimum number of players before taking effect.

Fact is I don't have any afk maneger plugin and I get kicked "For inactivity".
I thought this was your plugin that was kicking inactive players.

keigel2001 10-30-2014 13:11

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
That's valve. mp_autokick 0

h3bus 10-30-2014 13:23

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
Quote:

Originally Posted by keigel2001 (Post 2217921)
That's valve. mp_autokick 0

Wow. I feel really stupid now!

freehugs 10-31-2014 00:29

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
Thanks again for all the hard work! Using the latest git repo I saw you have the ability for modular plugins. I made up a Scouts/knife round and it's working amazing!

splewis 10-31-2014 00:56

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
Quote:

Originally Posted by freehugs (Post 2218261)
Thanks again for all the hard work! Using the latest git repo I saw you have the ability for modular plugins. I made up a Scouts/knife round and it's working amazing!

That's a little scary to me. But good it hear it works for you! I do think making knife rounds ranked is a little questionable though :wink:

Do you have any thoughts on how it works or suggested changes to the interface? I've mulled it over for a couple months now.

maRoff 10-31-2014 03:36

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
Quote:

Originally Posted by freehugs (Post 2218261)
Thanks again for all the hard work! Using the latest git repo I saw you have the ability for modular plugins. I made up a Scouts/knife round and it's working amazing!

Could you describe how you do scout/knife round?

splewis 10-31-2014 03:46

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
Quote:

Originally Posted by maRoff (Post 2218297)
Could you describe how you do scout/knife round?

If you look at

https://github.com/splewis/csgo-mult...kniferounds.sp

it should be pretty simple to figure it out :wink:

maRoff 10-31-2014 04:31

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
xD
I don't look at github few days.

For me, it's time to update your mod to new version :) thx

jad3z 10-31-2014 11:49

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
Is the https://github.com/splewis/csgo-multi-1v1/releases

Always updated with the changes on the github ?
Or do i need to download the github files directly :
http://i.imgur.com/6LALpoJ.png
And compile myself with sourcemod 1.7 ?

Now im trying to wqork with the 0.5.2 zip from release page

The top 15 seems to work :
http://i.imgur.com/2InkzuW.png

PS : can someone confirm this database setup :
http://i.imgur.com/OoPQ9c1.png

When i click on a user i get this error :
Warning: mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given in /home/*/domains/*.com/public_html/stats/index.php on line 53\
http://i.imgur.com/k6XU8pj.png

multi1v1.cfg
Quote:

// This file was auto-generated by SourceMod (v1.6.2)
// ConVars for plugin "multi1v1.smx"


// Should the plugin attempt to use the auto-update plugin?
// -
// Default: "0"
sm_multi1v1_autoupdate "0"

// Should the plugin block radio commands from being broadcasted
// -
// Default: "1"
sm_multi1v1_block_radio "1"

// Should players see the guns menu automatically on their first connect?
// -
// Default: "0"
sm_multi1v1_guns_menu_first_connect "1"

// Should the lastTime field store when players connect?
// -
// Default: "0"
sm_multi1v1_record_times "1"

// Roundtime (in seconds)
// -
// Default: "30"
// Minimum: "5.000000"
sm_multi1v1_roundtime "30"

// URL to send player stats to. For example: http://csgo1v1.splewis.net/redirect_stats/. The accountID is appened to this url for each player.
// -
// Default: ""
sm_multi1v1_stats_url "http://webairw.com/stats/redirect.php?id="

// Should we use a database to store stats and preferences
// -
// Default: "0"
sm_multi1v1_use_database "1"

// Set to 1 to get info about all spawns the plugin read - useful for map creators testing against the plugin.
// -
// Default: "0"
sm_multi1v1_verbose_spawns "0"

I have been working on this for 11 days now and i am lost.
Offering 50$ if someone can help me set this all up.
Add me on skype patrick.bulgras1

maRoff 10-31-2014 19:11

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
version 0.5.2 is stable version, it doesn't have new features and changes.

You can compile 1.0 beta version yourself:
https://github.com/splewis/csgo-multi-1v1
with Sourcemod 1.7 but this is beta version, and maybe have some errors.

This database setup is correct for version 0.5.2

keigel2001 10-31-2014 21:34

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
Quote:

Originally Posted by keigel2001 (Post 2215718)
I have another "problem": After each map the tab-menu (scoreboard) doesn't open and it directly switches to next map. I also think, that no drops are given. It only occurs with activated plugin, so I think it's a plugin issue.

Quote:

Originally Posted by splewis (Post 2215735)
Can you try removing the plugin, but executing the sourcemod/multi1v1/game_cvars.cfg on a map start and seeing if you still have the issue? It might just be a cvar in that.

You were right. It is a cvar-issue.
After some testing I figured it out:
mp_match_restart_delay must be greater than mp_win_panel_display_time to show the scoreboard at the end of map.

I have the following settings now, which are working perfect:
mp_match_restart_delay 20
mp_round_restart_delay 5
mp_win_panel_display_time 5

Maybe you should change this on github because many people were confused. It gives drops anyways but some people asked on my server...



There's another problem with unicode/utf8-characters of playernames and the database(connection). My database and the varchar-columns are utf8_general_ci and everything utf8-based. I think it's a plugin issue (not the webinterface).

jad3z 11-01-2014 23:32

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
How do I use the nextmap plugin with workshop maps ?
It seems to rotate to de_dust everytime..

start.bat
Quote:

srcds -game csgo -console -ip *.*.*.* +game_type 0 +game_mode 0 +host_workshop_collection 249376192 +workshop_start_map 241267905 -authkey ***
maplist.txt
Quote:

workshop\241267905\aim_multi_v4
workshop\257199120\am_banana
workshop\300114347\am_nuke_ramp_neogear1
workshop\289465688\am_inferno_mid_neogear
workshop\255301758\am_dust2_cat
mapcycle.txt
Quote:

workshop\241267905\aim_multi_v4
workshop\257199120\am_banana
workshop\300114347\am_nuke_ramp_neogear1
workshop\289465688\am_inferno_mid_neogear
workshop\255301758\am_dust2_cat
How do i make this work with nextmap plugin?
I just want these 5 maps to be cycled, thanks in advance

PS using sourcemod 1.7 with compiled multi1v1 beta 1.0

splewis 11-02-2014 03:22

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
Not really relevant to the plugin, but try deleting the csgo/subscrided_file_ids.txt and csgo/subscribed_collection_ids.txt

jad3z 11-02-2014 12:25

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
Quote:

Originally Posted by splewis (Post 2219064)
Not really relevant to the plugin, but try deleting the csgo/subscrided_file_ids.txt and csgo/subscribed_collection_ids.txt

Thanks for the response, but those files does not exist in my folder structure :(
Anyway since it is off topic i made one for it :

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

axo 11-03-2014 11:14

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
"To create a MySQL user and database on the database server, you can run:
Code:
CREATE DATABASE game_servers_database;
CREATE USER 'mymulti1v1server'@'123.123.123.123' IDENTIFIED BY 'strongpassword';
GRANT ALL PRIVILEGES ON game_servers_database.* TO 'mymulti1v1server'@'123.123.123.123';
FLUSH PRIVILEGES;"

I am not quite sure how I create the database.

Where do I type those CREATE DABATASE commands and such ?

Sorry for noob question :(

PS: Excellent mod! Gj! :D

splewis 11-03-2014 17:15

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
So you need a server running MySQL somewhere. If you have a managed web hosting thing, they probably have MySQL installed, and probably a web admin panel thingy for you to create a database and add users.

I run a VPS with the database server on it where setting everything up just involves installing MySQL, then running those commands in it.

So it depends where your MySQL server will be. Normal game server hosts will not have it available.

axo 11-03-2014 19:29

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
Quote:

Originally Posted by splewis (Post 2219810)
So you need a server running MySQL somewhere. If you have a managed web hosting thing, they probably have MySQL installed, and probably a web admin panel thingy for you to create a database and add users.

I run a VPS with the database server on it where setting everything up just involves installing MySQL, then running those commands in it.

So it depends where your MySQL server will be. Normal game server hosts will not have it available.

I have my own webhosting company, the problem is not regarding how-to create a db on a web interface, is to create the db locally on the same server machine. I dont want it to be web-dependant.

I use purepings.com for this 1v1 server.

splewis 11-03-2014 19:36

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
Quote:

Originally Posted by axo (Post 2219841)
I have my own webhosting company, the problem is not regarding how-to create a db on a web interface, is to create the db locally on the same server machine. I dont want it to be web-dependant.

I use purepings.com for this 1v1 server.

... then start MySQL on the game server and run those commands. You could also just use SQLite if it's local only, though I don't know the actual commands to create the database.

jad3z 11-04-2014 07:13

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
How do you change the " [Multi1v1] " text into something shorter like " [Info] " ?

http://i.imgur.com/sAzA41X.png

TUSK3N1337 11-04-2014 10:59

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
I got alot of this in my error logs what is happening?

Code:

L 11/04/2014 - 00:22:17: SourceMod error session started
L 11/04/2014 - 00:22:17: Info (map "am_texture2") (file "errors_20141104.log")
L 11/04/2014 - 00:22:17: [fragradio.smx] [FragRadio] Socket error 3 (errno 110)
L 11/04/2014 - 01:16:25: Error log file session closed.
L 11/04/2014 - 01:16:35: SourceMod error session started
L 11/04/2014 - 01:16:35: Info (map "am_texture2") (file "errors_20141104.log")
L 11/04/2014 - 01:16:35: [multi1v1.smx] player Ебанный Грибник had arena -1 on his spawn
L 11/04/2014 - 02:31:43: Error log file session closed.
L 11/04/2014 - 02:32:12: SourceMod error session started
L 11/04/2014 - 02:32:12: Info (map "am_texture2") (file "errors_20141104.log")
L 11/04/2014 - 02:32:12: [multi1v1.smx] player Aktoboss had arena -1 on his spawn
L 11/04/2014 - 03:21:02: Error log file session closed.
L 11/04/2014 - 03:21:33: SourceMod error session started
L 11/04/2014 - 03:21:33: Info (map "am_texture2") (file "errors_20141104.log")
L 11/04/2014 - 03:21:33: [multi1v1.smx] player 큰 음경 had arena -1 on his spawn
L 11/04/2014 - 03:29:57: Error log file session closed.
L 11/04/2014 - 03:30:18: SourceMod error session started
L 11/04/2014 - 03:30:18: Info (map "am_texture2") (file "errors_20141104.log")
L 11/04/2014 - 03:30:18: [multi1v1.smx] player Σ.Σ had arena -1 on his spawn
L 11/04/2014 - 07:48:24: Error log file session closed.
L 11/04/2014 - 07:48:50: SourceMod error session started
L 11/04/2014 - 07:48:50: Info (map "am_texture2") (file "errors_20141104.log")
L 11/04/2014 - 07:48:50: [multi1v1.smx] player LeMoN had arena -1 on his spawn
L 11/04/2014 - 10:24:18: Error log file session closed.
L 11/04/2014 - 10:27:06: SourceMod error session started
L 11/04/2014 - 10:27:06: Info (map "am_texture2") (file "errors_20141104.log")
L 11/04/2014 - 10:27:06: [multi1v1.smx] player Themone422 had arena -1 on his spawn
L 11/04/2014 - 10:39:23: Error log file session closed.
L 11/04/2014 - 10:39:32: SourceMod error session started
L 11/04/2014 - 10:39:32: Info (map "am_grass2") (file "errors_20141104.log")
L 11/04/2014 - 10:39:32: [multi1v1.smx] player Crabbofix had arena -1 on his spawn
L 11/04/2014 - 10:56:36: Error log file session closed.
L 11/04/2014 - 10:56:54: SourceMod error session started
L 11/04/2014 - 10:56:54: Info (map "am_grass2") (file "errors_20141104.log")
L 11/04/2014 - 10:56:54: [multi1v1.smx] player swag had arena -1 on his spawn
L 11/04/2014 - 11:48:23: Error log file session closed.
L 11/04/2014 - 11:48:37: SourceMod error session started
L 11/04/2014 - 11:48:37: Info (map "am_grass2") (file "errors_20141104.log")
L 11/04/2014 - 11:48:37: [multi1v1.smx] player Mr Brown had arena -1 on his spawn
L 11/04/2014 - 12:02:27: Error log file session closed.
L 11/04/2014 - 12:02:40: SourceMod error session started
L 11/04/2014 - 12:02:40: Info (map "am_grass2") (file "errors_20141104.log")
L 11/04/2014 - 12:02:40: [multi1v1.smx] player mrsteele <*))>< had arena -1 on his spawn
L 11/04/2014 - 12:14:58: Error log file session closed.
L 11/04/2014 - 12:15:05: SourceMod error session started
L 11/04/2014 - 12:15:05: Info (map "am_publiclir_stronghold_v1") (file "errors_20141104.log")
L 11/04/2014 - 12:15:05: [multi1v1.smx] player JesseRage had arena -1 on his spawn
L 11/04/2014 - 12:27:23: Error log file session closed.
L 11/04/2014 - 12:27:49: SourceMod error session started
L 11/04/2014 - 12:27:49: Info (map "am_rob_a") (file "errors_20141104.log")
L 11/04/2014 - 12:27:49: [multi1v1.smx] player JesseRage had arena -1 on his spawn
L 11/04/2014 - 12:28:02: [multi1v1.smx] player mrsteele <*))>< had arena -1 on his spawn
L 11/04/2014 - 12:40:01: Error log file session closed.
L 11/04/2014 - 13:06:01: SourceMod error session started
L 11/04/2014 - 13:06:01: Info (map "am_nuke") (file "errors_20141104.log")
L 11/04/2014 - 13:06:01: [multi1v1.smx] player Ugnen! had arena -1 on his spawn


splewis 11-04-2014 13:08

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
Quote:

Originally Posted by TUSK3N1337 (Post 2220057)
I got alot of this in my error logs what is happening?

It's probably some interaction with another plugin, can you run "sm plugins list" and get the other plugins running?

Pim 11-04-2014 18:36

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
I remember getting that error when i had a warmuptime set up

splewis 11-04-2014 19:22

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
That sounds quite likely since it looks like it usually happens once per map.

Making the plugin work with warmup time, as well as be able to handle a enable/disable thing would be a good thing to add.

jad3z 11-04-2014 19:59

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
Quote:

Originally Posted by jad3z (Post 2219960)
How do you change the " [Multi1v1] " text into something shorter like " [Info] " ?

http://i.imgur.com/sAzA41X.png

Why is this getting ignored ?

splewis 11-04-2014 20:28

Re: [CS:GO] Multi-1v1 (v0.5.2, 2014-7-19)
 
Quote:

Originally Posted by jad3z (Post 2220227)
Why is this getting ignored ?

Short answer: because I don't care

Longer answer: I can't tell if you're trying to edit the source yourself or trying to get a new cvar added, and either way I'm not really in favor of changing it

edit: sorry if I came off as a little rude, but you have to realize I have to prioritize my time here, and there's lots of things more important than a chat tag


All times are GMT -4. The time now is 08:23.

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