AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Plugins (https://forums.alliedmods.net/forumdisplay.php?f=108)
-   -   [Levels Ranks] Core v3.1.6 with 39 Modules + LR Webpanel - [01.23.2021] (https://forums.alliedmods.net/showthread.php?t=318782)

freak.exe_uLow 09-20-2019 07:25

[Levels Ranks] Core v3.1.6 with 39 Modules + LR Webpanel - [01.23.2021]
 
3 Attachment(s)
https://i.imgur.com/rqkYWvg.png



https://i.imgur.com/e90ttPg.png

[Levels Ranks] Core is a statistics plugin that will be a perfect substitute for other statisticians like RankMe, Sod Stats and the like. The essence of it is simple, you perform various game actions and get/loss experience points for it, at accumulation/loss of certain quantity of which, you receive a certain rank. You can also edit the number of ranks.


The plugin has 3 types of statistics.
1. Accumulation system
The point is that you start with the lowest rank and you have to accumulate experience points starting with 0. And the more you play, the higher the rank.
2. Rating system (extended)
This type of statistics is analogous to HlstatsX. Its essence is that you get an average rank and 1000 experience points. And depending on how you know how to play and how well, depends on your rank.
3. Rating system (simple)
This type of statistics is analogous to RankMe; the essence of this type of statistics is the same as the type of statistics above (rating extended), but there are no additional bonuses, there is no multiplying coefficient to regulate statistics, and in this type there is another formula for calculating experience points.



https://i.imgur.com/S10XELK.png

https://i.imgur.com/Llv2SCV.jpg https://i.imgur.com/DAxkmut.jpg https://i.imgur.com/0uG7bJK.jpg https://i.imgur.com/cAkzk1C.jpg

https://i.imgur.com/kZFt7XW.png
  • Counter-Strike: Global Offensive
  • Counter-Strike: Source

https://i.imgur.com/vi8Z38h.png
  • SourceMod 1.10.6422 or above.
Supported database types:
  • SQLite
  • MySQL
https://i.imgur.com/gxJGb88.png
sm_lvl (main menu)
sm_lvl - opens the main statistics menu.
sm_lvl_reload - reboots all configuration files of the plugin.
sm_lvl_reset - drops the statistics from all the players.
all - will reset all data.
exp - resets the value and rank of the experience points.
stats - resets the statistics (kills, deaths, shoots, hits, headshots, assists, round_win, round_lose).
sm_lvl_del - resets the statistics from a particular player.

https://i.imgur.com/O9LLVpF.png
1. Read the complete description "ReadMe.txt"
2. Uninstall the previous version of the plug-in, if available
3. Extract the contents of the archive into folders
- addons (plugin and its settings)
- FastDL Server (plug-in files for Web Hosting)
- Game Server (plug-in files for the server itself)
4. Configure the files:
- addons / sourcemod / configs / databases.cfg
- addons / sourcemod / configs / levels_ranks / settings.ini
- addons / sourcemod / configs / levels_ranks / settings_ranks.ini
- addons / sourcemod / configs / levels_ranks / settings_stats.ini
5. Restart the server
https://i.imgur.com/wVNfSuE.png
Modules for Core v3.1: https://github.com/levelsranks/levels-ranks-modules

https://i.imgur.com/tAnzAhN.png
Is not needed, but is a cool feature: https://github.com/levelsranks/levels-ranks-web

Source: Github Core
Support for the plugin: Roadside Romeo Discord
Support for the Webpanel: M0st1ce Discord
The old link from the plugin: https://forums.alliedmods.net/showthread.php?t=299311
Special Thanks goes to Roadside Romeo and Wend4r that update the plugin and add more features and thanks also to M0st1ce for the good work, she has created a webpanel for Level Ranks.

freak.exe_uLow 09-20-2019 07:30

Re: [Levels Ranks] Core 3.0 SR1
 
Please read before writing any nonsense message
Hey, before you wonder why the plugin is being posted on Alliedmodders again. Many of the users have asked me privately how they can fix some problems, 70% of them are using the old version of Core. The users do not know that they have to go to the last page to get the current last stable update.

What about updates in the future? Will the plugin still be updated?
From now on I will keep the version here always up to date, in case of problems I also offer help, but I will still link Roadside Romeo his Discord, he know little bit more^^

Can you upload the plugin just like that? without having the rights?
Yes, I am now in contact with Roadside Romeo and he allowed me to upload the LR Core on Alliedmodders

Incorrect string value: '\xF0\x9D\x90\x99z\xE3...' for column `name`
Plugin: https://forums.alliedmods.net/showpo...&postcount=353


No privat support on Steam, we can fix everything here in the Forum, more Infos: Click me

RoDriX 10-10-2019 10:03

Re: [Levels Ranks] Core 3.0 SR1
 
Hi, I have a compilation problem, can anyone help me?



levelsranks.sp
levels_ranks/database.sp(123) : error 105: cannot find method or property Database.Format
levels_ranks/database.sp(123) : error 092: number of arguments does not match definition
Quote:

Line 123: g_hDatabase.Format(sQuery, sizeof(sQuery), "INSERT INTO `%s` (`value`, `steam`, `name`, `lastconnect`) VALUES ('%d', '%s', '%s', '%d');", g_sTableName, !g_iTypeStatistics ? 0 : 1000, g_sSteamID[iClient], GetFixNamePlayer(iClient), GetTime());
levels_ranks/database.sp(226) : error 105: cannot find method or property Database.Format
Quote:

Line 226:
g_hDatabase.Format(sQuery, 1024, "UPDATE `%s` SET `value` = %d, `name` = '%s', `rank` = %d, `kills` = %d, `deaths` = %d, `shoots` = %d, `hits` = %d, `headshots` = %d, `assists` = %d, `round_win` = %d, `round_lose` = %d, `playtime` = %d, `lastconnect` = %d WHERE `steam` = '%s';", g_sTableName, g_iClientData[iClient][ST_EXP], GetFixNamePlayer(iClient), g_iClientData[iClient][ST_RANK], g_iClientData[iClient][ST_KILLS], g_iClientData[iClient][ST_DEATHS], g_iClientData[iClient][ST_SHOOTS], g_iClientData[iClient][ST_HITS], g_iClientData[iClient][ST_HEADSHOTS], g_iClientData[iClient][ST_ASSISTS], g_iClientData[iClient][ST_ROUNDSWIN], g_iClientData[iClient][ST_ROUNDSLOSE], g_iClientData[iClient][ST_PLAYTIME], GetTime(), g_sSteamID[iClient]);
levels_ranks/hooks.sp(278) : warning 203: symbol is never used: "iData"
Quote:

Line 278: void NextFrameRound(any iData)

freak.exe_uLow 10-10-2019 10:18

Re: [Levels Ranks] Core 3.0 SR1
 
Quote:

Originally Posted by RoDriX (Post 2669403)
Hi, I have a compilation problem, can anyone help me?



levelsranks.sp
levels_ranks/database.sp(123) : error 105: cannot find method or property Database.Format
levels_ranks/database.sp(123) : error 092: number of arguments does not match definition
levels_ranks/database.sp(226) : error 105: cannot find method or property Database.Format
levels_ranks/hooks.sp(278) : warning 203: symbol is never used: "iData"

Hey and pls send me the full error log :3

mysql or sqllite?

RoDriX 10-10-2019 10:22

Re: [Levels Ranks] Core 3.0 SR1
 
I have the problem with compilation script.(SPedit)

//mysql
//I added lines with errors in the first post

freak.exe_uLow 10-10-2019 10:58

Re: [Levels Ranks] Core 3.0 SR1
 
Quote:

Originally Posted by RoDriX (Post 2669406)
I have the problem with compilation script.(SPedit)

//mysql
//I added lines with errors in the first post

wtf? What'd you do? Did you follow the steps you were told?

It's just a drag and drop and server restart..
  1. Do you used a different [Level Ranks] core version before?
  2. Have you ever tried a new database?
  3. Have you entered the LR database in the database.cfg?
  4. Sourcemod Version?

example
HTML Code:

"levels_ranks"
    {
                "driver"                        "mysql"
                "host"                              "127.0.0.1"
                "database"                    "database"
                "user"                    "user"
                "pass"                    "password"
        }

if you use sqlite, you don't need to enter anything in the database.cfg.

RoDriX 10-10-2019 11:21

Re: [Levels Ranks] Core 3.0 SR1
 
Quote:

Originally Posted by freak.exe_uLow (Post 2669408)
wtf? What'd you do? Did you follow the steps you were told?

It's just a drag and drop and server restart..
  1. Do you used a different [Level Ranks] core version before?
  2. Have you ever tried a new database?
  3. Have you entered the LR database in the database.cfg?
  4. Sourcemod Version?

example
HTML Code:

"levels_ranks"
    {
                "driver"                        "mysql"
                "host"                              "127.0.0.1"
                "database"                    "database"
                "user"                    "user"
                "pass"                    "password"
        }

if you use sqlite, you don't need to enter anything in the database.cfg.

My friend look this is my problem, i can't convert file(script) to .smx ssy.png - Screen

manicogaming 10-10-2019 11:24

Re: [Levels Ranks] Core 3.0 SR1
 
Any chance that this might work with bots?

freak.exe_uLow 10-10-2019 11:30

Re: [Levels Ranks] Core 3.0 SR1
 
Quote:

Originally Posted by RoDriX (Post 2669410)
My friend look this is my problem, i can't convert file(script) to .smx

ssy.png - Screen

pls use sourcemod 1.9 or sourcemod 1.10 to compile the sp file :)

Quote:

Originally Posted by manicogmaing (Post 2669411)
Any chance that this might work with bots?

you can try to set the number of players to "lr_minplayers_count" "0" in "addons/sourcemod/configs/levels_ranks/settings.ini" :3 if you have discord and need a quick answer, you can join the official level ranks discord: https://discord.gg/Jc58wjF

EDIT: It won't work with bots

RoDriX 10-10-2019 12:17

Re: [Levels Ranks] Core 3.0 SR1
 
Oh, I'm sorry for the lost time, I'm doping.
After the include update, it works fine.
Thank you for your help, Best Regards.


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

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