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

Clan Ranking


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
AngelOfDarkness
BANNED
Join Date: Oct 2006
Location: In charmings house
Old 10-28-2006 , 13:43   Clan Ranking
Reply With Quote #1

Information:

Wonder if someone could make clan rankings such as along the lines you know in Sven Coop when you aim at them shows there name maybe a rank system so when u point it shows there rank, if someone would make this using the ranks,cvars listed below much karma and appreciation.


Cvars:
  • clan_leader "user" "tag" "flags given = abcdefghijklmnopqrstu" = All Commands and immune
  • clan_coleader "user" "tag" "flags given = bcdefghijklmnopqrstu" = All commands but immune
  • clan_admin "user" "tag" "flags given = bcdefghijk" = slap,slay,kick,say, commands
  • clan_member "user" "tag" "flags given = cdefghijk" = slap,cvar cmds,say cmds
More Information:
And I want it to show when u look at them like it says, it in red if there t and blue if there ct, and if u could add a Rank Model feature so we could change it to model ranks if we wanted or make it so it doesnt need models, thank you, hope this is a better idea then my last.


Last edited by AngelOfDarkness; 10-28-2006 at 14:05.
AngelOfDarkness is offline
Send a message via AIM to AngelOfDarkness
NowakFilip
BANNED
Join Date: Oct 2006
Location: United States
Old 10-28-2006 , 14:07   Re: Clan Ranking<amxmodx>
Reply With Quote #2

Here is the begining of the plugin that you were looking for.
PHP Code:
 #include <amxmodx>
#include <amxmisc>
#include <cstrike>

#define PLUGIN "Clan Ranking"
#define AUTHOR "NowakFilip" 
I'm Not Finished !
NowakFilip is offline
AngelOfDarkness
BANNED
Join Date: Oct 2006
Location: In charmings house
Old 10-28-2006 , 14:20   Re: Clan Ranking
Reply With Quote #3

Even Better Start

My Next Attempt Using Hud

Code:
#include <amxmodx> #include <amxmisc> #include <cstrike> #define PLUGIN "ClanRanking" #define VERSION "0.1" #define AUTHOR "Angel Of Darkness" #define ADMIN_LEVEL_G public plugin_init() {     register_plugin(ClanRanking, 0.1, AngelOfDarkness)         set_hudmessage(255, 0, 0, -1.0, 0.00, 0, 6.0, 12.0)     show_hudmessage(id, "Clan Ranking Mod v1.0")     }

Not that great >.<

Last edited by AngelOfDarkness; 10-28-2006 at 14:31.
AngelOfDarkness is offline
Send a message via AIM to AngelOfDarkness
Zenith77
Veteran Member
Join Date: Aug 2005
Old 10-28-2006 , 14:31   Re: Clan Ranking
Reply With Quote #4

I think Hawk's clan management system already does this.
__________________
Quote:
Originally Posted by phorelyph View Post
your retatred
Zenith77 is offline
AngelOfDarkness
BANNED
Join Date: Oct 2006
Location: In charmings house
Old 10-28-2006 , 14:36   Re: Clan Ranking
Reply With Quote #5

Im trying to learn to do it ^-^, it may do that but still good experience for a noob ^-^
AngelOfDarkness is offline
Send a message via AIM to AngelOfDarkness
AngelOfDarkness
BANNED
Join Date: Oct 2006
Location: In charmings house
Old 10-28-2006 , 14:38   Re: Clan Ranking
Reply With Quote #6

Heres What it looks like my second try

Code:
#include <amxmodx> #include <amxmisc> #include <cstrike> #define PLUGIN "ClanRanking" #define VERSION "0.1" #define AUTHOR "Angel Of Darkness" #define ADMIN_LEVEL_G public plugin_init() {     register_plugin(ClanRanking, 0.1, AngelOfDarkness)     register_concmd("amx_on_off","start",1,"stop",0,"Turns Off/On")     register_cvar("amx_on_off", "ADMIN_LEVEL_G")         set_hudmessage(255, 0, 0, -1.0, 0.00, 0, 6.0, 12.0)     show_hudmessage(id, "Clan Ranking Mod v1.0")     }
AngelOfDarkness is offline
Send a message via AIM to AngelOfDarkness
SweatyBanana
BANNED
Join Date: Sep 2005
Location: LOL
Old 10-28-2006 , 14:39   Re: Clan Ranking
Reply With Quote #7

Just stop lol.
SweatyBanana is offline
Send a message via AIM to SweatyBanana Send a message via Yahoo to SweatyBanana
AngelOfDarkness
BANNED
Join Date: Oct 2006
Location: In charmings house
Old 10-28-2006 , 14:42   Re: Clan Ranking
Reply With Quote #8

Why cant i try? if you were a friend like you are in the server you would try to help me not try to discourage me from trying to learn.
AngelOfDarkness is offline
Send a message via AIM to AngelOfDarkness
NowakFilip
BANNED
Join Date: Oct 2006
Location: United States
Old 10-28-2006 , 14:42   Re: Clan Ranking
Reply With Quote #9

How about this ?
PHP Code:
/* Plugin generated by AMXX-Studio */

#include <amxmodx>
#include <amxmisc>
#inlcude <cstrike>

[Cvars]
clan_leader "user" "tag" "flags" 
clan_coleader "user" "tag" "flags"
clan_admin "user" "tag" "flags"
clan_member "user" "tag" "flags"

#define PLUGIN "Clan_Ranting"
#define VERSION "0.1"
#define AUTHOR "NowakFilip"

new pCvar_leader
new pCvar_coleader
new pCvar_admin
new pCvar_member


public plugin_init() {
    
register_plugin("Clan_Rating""0.1""NowakFilip")
    
    
pCvar_leader register_cvar("clan_leader""1")
    
pCvar_coleader register_cvar("clan_coleader""1")
    
pCvar_admin register_cvar("clan_admin""1")
    
pCvar_chances register_cvar("clan_member""1"

Last edited by NowakFilip; 10-28-2006 at 14:44.
NowakFilip is offline
AngelOfDarkness
BANNED
Join Date: Oct 2006
Location: In charmings house
Old 10-28-2006 , 14:43   Re: Clan Ranking
Reply With Quote #10

it done i assume
AngelOfDarkness is offline
Send a message via AIM to AngelOfDarkness
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 13:00.


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