AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   New Plugin Submissions (https://forums.alliedmods.net/forumdisplay.php?f=26)
-   -   OciXCrom's Rank System [XP|Levels|Ranks] (https://forums.alliedmods.net/showthread.php?t=308540)

XPERA 05-17-2023 04:33

Re: OciXCrom's Rank System [XP|Levels|Ranks]
 
how to download hud message down

undertaker5 12-08-2023 20:11

Re: OciXCrom's Rank System [XP|Levels|Ranks]
 
PHP Code:

[da]
CRXRANKS_RANKINFO_NORMAL Du har &x04%i/%i XP&x01Din rang er &x04#%i&x01: &x03%s&x01. Næste rang: &x03%s&x01.
CRXRANKS_RANKINFO_FINAL Du har &x04%i XP&x01Din rang er &x04#%i&x01: &x03%s&x01. Du er på det sidste niveau!
CRXRANKS_GIVE_XP = &x03%&x01gav &x04%i XP &x01til &x03%s
CRXRANKS_TAKE_XP 
= &x03%&x01tog &x04%i XP &x01fra &x03%s
CRXRANKS_RESET_XP 
= &x03%&x01nulstillede &x03%s&x01's XP
CRXRANKS_LEVEL_REACHED = &x03%s &x01har nået &x04Level %i &x01[&x03%s&x01]
CRXRANKS_LEVEL_LOST = &x03%s &x01kom tilbage på &x04Level %i &x01[&x03%s&x01]
CRXRANKS_MENU_TITLE = \rOciXCrom'
\yRank System: \rXP List
CRXRANKS_ITEM_FORMAT = \d[%i XP] \w%\r[\yLevel %i: %s\r]
CRXRANKS_XP_NOTIFIER_GET = +%i XP
CRXRANKS_XP_NOTIFIER_LOSE 
= -%i XP
CRXRANKS_NOTIFY_KILL_GET 
Du har modtaget &x04%i XP &x01 for at dræbe &x03%s
CRXRANKS_NOTIFY_KILL_LOSE 
Du mistede &x04%i XP &x01for at dræbe &x03%s
CRXRANKS_NOTIFY_SUICIDE_GET 
Du modtog &x04%i XP &x01for &x03at begå selvmord&x01.
CRXRANKS_NOTIFY_SUICIDE_LOSE Du mistede &x04%i XP &x01for &x03 at begå selvmord&x01.
CRXRANKS_NOTIFY_DEATH_GET Du modtog &x04%i XP &x01for at dø.
CRXRANKS_NOTIFY_DEATH_LOSE Du mistede &x04%i XP &x01for at dø.
CRXRANKS_MYSQL_FAILED MySQL-forbindelse mislykkedesPluginet vil bruge nVault i stedet.
CRXRANKS_HUDINFO_UNAVAILABLE HUD information is &x07disabled &x01by &x04the administrator&x01.
CRXRANKS_HUDINFO_ENABLED HUD information &x06aktiveret&x01.
CRXRANKS_HUDINFO_DISABLED HUD information &x07deaktiveret&x01


Gooday 01-24-2024 03:44

Re: OciXCrom's Rank System [XP|Levels|Ranks]
 
Great plugin thanks! )
Is it possible to give XP not just for killing, for being on the server also.
For example
Every 5 minutes gives 10 xp

OciXCrom 02-25-2024 09:16

Re: OciXCrom's Rank System [XP|Levels|Ranks]
 
Quote:

Originally Posted by Gooday (Post 2816524)
Great plugin thanks! )
Is it possible to give XP not just for killing, for being on the server also.
For example
Every 5 minutes gives 10 xp

Yes, by adding this sub-plugin
https://www.amxx-bg.info/forum/viewt...?f=110&p=47525

itsme1 02-25-2024 20:01

Re: OciXCrom's Rank System [XP|Levels|Ranks]
 
https://gamebanana.com/mods/39952

hi,

Ive downloaded the files and installed into the correct folders, every file is there on the server but when you load up the server nothing has changed, im i missing something. it there but its not working.

Just need some advise please.

Thanks

amirwolf 02-26-2024 04:45

Re: OciXCrom's Rank System [XP|Levels|Ranks]
 
Quote:

Originally Posted by itsme1 (Post 2818624)
https://gamebanana.com/mods/39952

hi,

Ive downloaded the files and installed into the correct folders, every file is there on the server but when you load up the server nothing has changed, im i missing something. it there but its not working.

Just need some advise please.

Thanks

Quote:

Originally Posted by OciXCrom (Post 2750623)
Google "amxmodx how to compile plugins".

https://i.imgur.com/NyZELN1.gif


Noochs 04-13-2024 16:51

Re: OciXCrom's Rank System [XP|Levels|Ranks]
 
Have This Error In The Console When The Server Changes Map Is There Any Fix For It

Displaying debug trace (plugin "crx_ranksystem.amxx", version "3.10")
[AMXX] Run time error 10: native error (native "ArrayGetCell")
[0] crx_ranksystem.sma::check_level (line 1504)
[1] crx_ranksystem.sma::QueryLoadData (line 1277)

Mohammad Hlwani 04-23-2024 03:51

Re: OciXCrom's Rank System [XP|Levels|Ranks]
 
Hello,

Thank you for this amazing plugin but i have an issue, the final level admin privilege didn't work for me :cry:

i've tried writing: t, LEVEL_ADMIN_H. But nothing worked. Will you kindly tell me the way to do it? :roll:

it will be much appreciated :avast:

Gooday 04-26-2024 10:07

Re: OciXCrom's Rank System [XP|Levels|Ranks]
 
Hello, OciXCrom, thank you for the great plugin. I have a question. I use saving method MYSQL, and it saves for STEAM ID. I still want to use Steam ID, but I also want to add "Nickname" column in DB, so I can show nickname instead of Steam ID, if I post this top on website.

I'm not good with scripting, should I tweak something here?
PHP Code:

        formatex(szQuerycharsmax(szQuery), "CREATE TABLE IF NOT EXISTS `%s` (`Player` VARCHAR(%i) NOT NULL, `XP` INT(%i) NOT NULL, `Level` INT(%i) NOT NULL,\
        `Next XP` INT(%i) NOT NULL, `Rank` VARCHAR(%i) NOT NULL, `Next Rank` VARCHAR(%i) NOT NULL, PRIMARY KEY(Player));"
,\
        
g_eSettings[SQL_TABLE], MAX_SQL_PLAYER_LENGTHCRXRANKS_MAX_XP_LENGTHCRXRANKS_MAX_XP_LENGTHCRXRANKS_MAX_XP_LENGTH,\
        
MAX_SQL_RANK_LENGTHMAX_SQL_RANK_LENGTH


Visan15 05-06-2024 16:50

Re: OciXCrom's Rank System [XP|Levels|Ranks]
 
Hey there @OciXCrom,

Its any change to add per level different "powers" ? like :

lvl 1 - 20hp extra
lvl 2 - 50 armor extra
lvl 3 - 10% speed increase

Or exist any kind of this plugin ?

Its more competitive to have some benefits when you leveling up , at least in my mind on respawn server.

Thank you .


All times are GMT -4. The time now is 16:18.

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