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

prefix plugin


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
The RaiD.
Member
Join Date: Jul 2019
Old 07-07-2020 , 13:30   prefix plugin
Reply With Quote #1

hello is there a plugin which can give auto to top15 players 1,2,3 places the prefix [TOP 1.] [TOP 2] [TOP 3] with red colorchat? + iam using ocixcroms ranksystem/Chatmanager
The RaiD. is offline
Old 07-07-2020, 14:25
ZaX
This message has been deleted by ZaX. Reason: not working code, post #3
OciXCrom
Veteran Member
Join Date: Oct 2013
Location: Macedonia
Old 07-07-2020 , 14:38   Re: prefix plugin
Reply With Quote #2

Here's one I made a while ago:

Code:
#include <amxmodx> #include <chatmanager> #include <csstats> const TOP_RANK = 15 #define TOP_PREFIX "&x04[Top%i]" public plugin_init() {     register_plugin("CM: Top Prefix", "1.2", "OciXCrom") } public cm_on_player_data_updated(id) {     static szRank[32], iStats[8], iHits[8]     get_user_stats(id, iStats, iHits)     if(iStats[7] <= TOP_RANK)     {         formatex(szRank, charsmax(szRank), TOP_PREFIX, iStats[7])         cm_set_user_say_format(id, "format_admin", "format_admin_team")         cm_set_user_prefix(id, szRank)     } }
__________________

Last edited by OciXCrom; 07-07-2020 at 14:57.
OciXCrom is offline
Send a message via Skype™ to OciXCrom
The RaiD.
Member
Join Date: Jul 2019
Old 07-07-2020 , 14:53   Re: prefix plugin
Reply With Quote #3

its working only for admins normal players has only rankprefix
The RaiD. is offline
OciXCrom
Veteran Member
Join Date: Oct 2013
Location: Macedonia
Old 07-07-2020 , 14:57   Re: prefix plugin
Reply With Quote #4

Forgot you also need to change the player's chat format so it has the $rank$ placeholder.

I edited the code, try now.
__________________
OciXCrom is offline
Send a message via Skype™ to OciXCrom
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 12:23.


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