View Single Post
Taha_rajper
Member
Join Date: Jun 2021
Location: Under The Sea
Old 07-09-2022 , 06:32   Re: [REQ] getxp for OcixCrom xp system
Reply With Quote #3

Quote:
Originally Posted by OciXCrom View Post
Code:
#include <amxmodx> #include <cromchat> #include <crxranks> public plugin_init() {     register_plugin("CRXRanks: GetXP Cmd", "1.0", "OciXCrom")     register_clcmd("say /getxp", "Cmd_GetXP")     register_clcmd("say_team /getxp", "Cmd_GetXP")     crxranks_get_chat_prefix(CC_PREFIX, charsmax(CC_PREFIX)) } public Cmd_GetXP(id) {     if(get_user_flags(id) & ADMIN_LEVEL_B)     {         new iRandom = random_num(50, 150)         crxranks_give_user_xp(id, iRandom)         CC_SendMessage(id, "Yay! You received &x04%i XP&x01!", iRandom)     }     else     {         CC_SendMessage(id, "You have no access to this command.")     }     return PLUGIN_HANDLED }
Can you make it only once per map ?
Taha_rajper is offline