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

[CS:GO] Simple CSGO Ranks


Post New Thread Reply   
 
Thread Tools Display Modes
Puppetmaster
Senior Member
Join Date: Jun 2015
Location: Probably at a computer.
Old 04-25-2016 , 01:43   Re: [CS:GO] Simple CSGO Ranks
Reply With Quote #81

Ive added a git for this project:
https://github.com/ArclightHub/Simple-CSGO-Ranks

I will add it to the description once I stop getting the "Sorry, you have been blocked You are unable to access alliedmods.net" message.
__________________

GZS Servers
Puppetmaster is offline
cheegerdeluxe
New Member
Join Date: Apr 2016
Old 04-25-2016 , 06:02   Re: [CS:GO] Simple CSGO Ranks
Reply With Quote #82

the most people have problems with the create of a database in phpmyadmin, can u export ur db?

everyone can than import this file and must only only change the mysql data.

but not the db with statistic, only the clean database please
cheegerdeluxe is offline
Puppetmaster
Senior Member
Join Date: Jun 2015
Location: Probably at a computer.
Old 04-25-2016 , 21:54   Re: [CS:GO] Simple CSGO Ranks
Reply With Quote #83

Quote:
Originally Posted by cheegerdeluxe View Post
the most people have problems with the create of a database in phpmyadmin, can u export ur db?

everyone can than import this file and must only only change the mysql data.

but not the db with statistic, only the clean database please
You should now be able to find the databases on the git repo.
__________________

GZS Servers
Puppetmaster is offline
Eska
Member
Join Date: Dec 2012
Old 05-05-2016 , 13:47   Re: [CS:GO] Simple CSGO Ranks
Reply With Quote #84

At first, this plugin is damn nice, really enjoying it on all my csgo servers.

While my servers are empty and people getting into rush hours and slowly filling them up, they are playing with bots for a while.

Bots getting stats and adding stats to other players. Is there way to exclude bots from statistics?

Moreover, im getting this:

Code:
L 05/06/2016 - 00:04:16: SourceMod error session started
L 05/06/2016 - 00:04:16: Info (map "de_dust2") (file "errors_20160506.log")
L 05/06/2016 - 00:04:16: [SM] Plugin encountered error 30: Script execution timed out
L 05/06/2016 - 00:04:16: [SM] Displaying call stack trace for plugin "simplecsgoranks.smx":
L 05/06/2016 - 00:04:16: [SM]   [0]  Line 485, simplecsgoranks.sp::copyOut()
L 05/06/2016 - 00:04:16: [SM]   [1]  Line 575, simplecsgoranks.sp::Event_RoundEnd()
no clue why.

Last edited by Eska; 05-05-2016 at 18:34.
Eska is offline
Puppetmaster
Senior Member
Join Date: Jun 2015
Location: Probably at a computer.
Old 05-10-2016 , 23:09   Re: [CS:GO] Simple CSGO Ranks
Reply With Quote #85

Quote:
Originally Posted by Eska View Post
At first, this plugin is damn nice, really enjoying it on all my csgo servers.

While my servers are empty and people getting into rush hours and slowly filling them up, they are playing with bots for a while.

Bots getting stats and adding stats to other players. Is there way to exclude bots from statistics?

Moreover, im getting this:

Code:
L 05/06/2016 - 00:04:16: SourceMod error session started
L 05/06/2016 - 00:04:16: Info (map "de_dust2") (file "errors_20160506.log")
L 05/06/2016 - 00:04:16: [SM] Plugin encountered error 30: Script execution timed out
L 05/06/2016 - 00:04:16: [SM] Displaying call stack trace for plugin "simplecsgoranks.smx":
L 05/06/2016 - 00:04:16: [SM]   [0]  Line 485, simplecsgoranks.sp::copyOut()
L 05/06/2016 - 00:04:16: [SM]   [1]  Line 575, simplecsgoranks.sp::Event_RoundEnd()
no clue why.
You should be able to add a new check condition to the existing lines by changing the code below:

Change:
Code:
if(IsClientConnected(defuser))
to
Code:
if(IsClientConnected(defuser) && !IsFakeClient(defuser))
Change:
Code:
if(IsClientConnected(client) && IsClientConnected(client2))
to
Code:
if(IsClientConnected(client) && IsClientConnected(client2) && !IsFakeClient(client) && !IsFakeClient(client2))
Change:
Code:
if(IsClientConnected(client3))
to
Code:
if(IsClientConnected(client3) && !IsFakeClient(client3))
__________________

GZS Servers

Last edited by Puppetmaster; 05-12-2016 at 19:56. Reason: Corrections
Puppetmaster is offline
Puppetmaster
Senior Member
Join Date: Jun 2015
Location: Probably at a computer.
Old 05-17-2016 , 19:43   Re: [CS:GO] Simple CSGO Ranks
Reply With Quote #86

I have added the bot code to branch 0.2.1Dev on github
__________________

GZS Servers
Puppetmaster is offline
Puppetmaster
Senior Member
Join Date: Jun 2015
Location: Probably at a computer.
Old 05-19-2016 , 19:17   Re: [CS:GO] Simple CSGO Ranks
Reply With Quote #87

Release 0.2.1 is now out!

Added new caching method with a threaded worker to silently cache ranks in the background, reducing lag, bandwidth usage and calculation time.
New console Variables:
sm_simplecsgoranks_kill_points: The base number of points gained per kill.
sm_simplecsgoranks_higher_rank_additional: Additional points gained when killing a higher ranked player.
sm_simplecsgoranks_higher_rank_gap: Difference between players ranks needed to consider one to be a higher ranked player.
sm_simplecsgoranks_cleaning: (0) Nothing. (1) Cleans the database. (2) Clears players who have no kills for more than two months.
__________________

GZS Servers
Puppetmaster is offline
Puppetmaster
Senior Member
Join Date: Jun 2015
Location: Probably at a computer.
Old 05-19-2016 , 20:14   Re: [CS:GO] Simple CSGO Ranks
Reply With Quote #88

Added additional WebsitePlugins for allowing more advanced data to be displayed on your servers website.
__________________

GZS Servers
Puppetmaster is offline
Puppetmaster
Senior Member
Join Date: Jun 2015
Location: Probably at a computer.
Old 05-21-2016 , 11:46   Re: [CS:GO] Simple CSGO Ranks
Reply With Quote #89

The latest dev build adds support for deathmatch and deathmatch type game modes.

sm_simplecsgoranks_mode: Sets the mode. (0) is rounds mode. (1) is immediate mode. Immediate mode is useful for deathmatch type games.

You can set it in the config found in your cfg/sourcemod folder.

You can download the new development build here:
https://github.com/ArclightHub/Simpl...ecsgoranks.smx
__________________

GZS Servers
Puppetmaster is offline
Puppetmaster
Senior Member
Join Date: Jun 2015
Location: Probably at a computer.
Old 05-22-2016 , 22:58   Re: [CS:GO] Simple CSGO Ranks
Reply With Quote #90

The 0.2.1 Get plugin link should be back up again now
__________________

GZS Servers
Puppetmaster 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 05:07.


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