Raised This Month: $32 Target: $400
 8% 

OciXCrom's Rank System [XP|Levels|Ranks]


Post New Thread Reply   
 
Thread Tools Display Modes
OciXCrom
Veteran Member
Join Date: Oct 2013
Location: Macedonia
Old 07-19-2021 , 07:32   Re: OciXCrom's Rank System [XP|Levels|Ranks]
Reply With Quote #671

Quote:
You can add stats save by 'SteamID + username' for poor players who use one Steam. (Families, computer club, etc)
That makes no sense.

Quote:
But RankSystem not support save additional data in mysql table
What is stopping you from manually inserting into the SQL table via other plugins?

Quote:
At this moment RankSystem in last place in usefulness among other plugins.
But you're using it, aren't you?

Quote:
Author can do better that another plugins, but he doesn't want it ...
Author is not active at the moment and just because he doesn't want to do what you're suggesting, doesn't mean the plugin is bad.
__________________
OciXCrom is offline
Send a message via Skype™ to OciXCrom
Natsheh
Veteran Member
Join Date: Sep 2012
Old 07-19-2021 , 08:34   Re: OciXCrom's Rank System [XP|Levels|Ranks]
Reply With Quote #672

I can assure you this is the best xp/rank system ever released here the others are hardcoded.
__________________
@Jailbreak Main Mod v2.7.0 100%
@User Tag Prefix 100% done !
@Mystery Box 100% done !
@VIP System 100% done !

Natsheh is offline
Send a message via MSN to Natsheh Send a message via Skype™ to Natsheh
karaulov
Senior Member
Join Date: Jul 2018
Old 07-25-2021 , 07:35   Re: OciXCrom's Rank System [XP|Levels|Ranks]
Reply With Quote #673

Quote:
Originally Posted by OciXCrom View Post
But you're using it, aren't you?
It won't be for long anymore, because better alternatives are enough.

Quote:
Originally Posted by Natsheh View Post
I can assure you this is the best xp/rank system ever released here the others are hardcoded.
"hardcoded" and has more features, betters that in this "not hardcoded" plugin

Last edited by karaulov; 07-25-2021 at 07:36.
karaulov is offline
Natsheh
Veteran Member
Join Date: Sep 2012
Old 07-25-2021 , 07:38   Re: OciXCrom's Rank System [XP|Levels|Ranks]
Reply With Quote #674

Can you make a sense out of your sentence please i can't understand.
__________________
@Jailbreak Main Mod v2.7.0 100%
@User Tag Prefix 100% done !
@Mystery Box 100% done !
@VIP System 100% done !

Natsheh is offline
Send a message via MSN to Natsheh Send a message via Skype™ to Natsheh
Napoleon_be
Veteran Member
Join Date: Jul 2011
Location: Belgium
Old 07-26-2021 , 09:28   Re: OciXCrom's Rank System [XP|Levels|Ranks]
Reply With Quote #675

Quote:
Originally Posted by karaulov View Post
It won't be for long anymore, because better alternatives are enough.



"hardcoded" and has more features, betters that in this "not hardcoded" plugin
No one forces you to use this plugin over any hardcoded plugin. As mentioned before, this will probably be the most "clean" ranksystem you can get.
__________________

Last edited by Napoleon_be; 07-26-2021 at 09:29.
Napoleon_be is offline
Send a message via Skype™ to Napoleon_be
zollymaN
Junior Member
Join Date: Aug 2021
Location: Romania
Old 08-17-2021 , 07:41   Re: OciXCrom's Rank System [XP|Levels|Ranks]
Reply With Quote #676

but rank in chat how i can active?
zollymaN is offline
OciXCrom
Veteran Member
Join Date: Oct 2013
Location: Macedonia
Old 08-17-2021 , 09:55   Re: OciXCrom's Rank System [XP|Levels|Ranks]
Reply With Quote #677

Quote:
Originally Posted by zollymaN View Post
but rank in chat how i can active?
By reading the first post.
__________________
OciXCrom is offline
Send a message via Skype™ to OciXCrom
Old 08-19-2021, 23:36
amirwolf
This message has been deleted by amirwolf.
drag1c
Junior Member
Join Date: Apr 2014
Location: Serbia, Nova Pazova
Old 09-26-2021 , 11:20   Re: OciXCrom's Rank System [XP|Levels|Ranks]
Reply With Quote #678

Quote:
Originally Posted by OciXCrom View Post
Thanks.

Yes, those things can be made very easily. Here's a bunch of already made addons for the plugin - https://www.amxx-bg.info/pluginlab/?name=rank (scroll down)

Here's a simple example on how to get a HE grenade on each spawn if you're level 10 or above:

PHP Code:
#include <amxmodx>
#include <crxranks>
#include <fun>
#include <hamsandwich>

public plugin_init()
{
    
register_plugin("CRXRanks: Weapon Example""1.0""OciXCrom")
    
RegisterHam(Ham_Spawn"player""OnPlayerSpawn"1)
}

public 
OnPlayerSpawn(id)
{
    if(!
is_user_alive(id))
        return

    if(
crxranks_get_user_level(id) >= 10)
        
give_item(id"weapon_hegrenade")

Hello !
How to set this to work after 3rd round?
drag1c is offline
Send a message via Skype™ to drag1c
WATCH_DOGS UNITED
BANNED
Join Date: Nov 2020
Old 09-26-2021 , 17:43   Re: OciXCrom's Rank System [XP|Levels|Ranks]
Reply With Quote #679

Quote:
Originally Posted by drag1c View Post
Hello !
How to set this to work after 3rd round?


PHP Code:
#include <amxmodx>
#include <crxranks>
#include <fun>
#include <hamsandwich>

new round_count 0

public plugin_init()
{
    
register_plugin("CRXRanks: Weapon Example""1.0""OciXCrom")
    
RegisterHam(Ham_Spawn"player""OnPlayerSpawn"1)
    
register_event("HLTV""Rounds_Counter""a""1=0""2=0")
    
register_event("TextMsg""restartRound""a""2&#Game_C""2&#Game_w")
}

public 
Rounds_Counter()
{
    
round_count++
}

public 
restartRound()
{
    
round_count 0
}

public 
OnPlayerSpawn(id)
{
    if(!
is_user_alive(id) || round_count )
        return

    if(
crxranks_get_user_level(id) >= 10)
        
give_item(id"weapon_hegrenade")

WATCH_DOGS UNITED is offline
ALonsoVIP4141
BANNED
Join Date: May 2021
Location: https://t.me/pump_upp
Old 10-08-2021 , 15:00   Re: OciXCrom's Rank System [XP|Levels|Ranks]
Reply With Quote #680

Can you make me thise mode but withe escapes not kills ?
ALonsoVIP4141 is offline
Send a message via ICQ to ALonsoVIP4141 Send a message via AIM to ALonsoVIP4141 Send a message via Yahoo to ALonsoVIP4141 Send a message via Skype™ to ALonsoVIP4141
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 01:30.


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