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

GunGame Ranking [Updated v4.0]


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
eXacT
Veteran Member
Join Date: Apr 2009
Location: Buenos Aires
Old 10-08-2009 , 01:55   GunGame Ranking [Updated v4.0]
Reply With Quote #1

.:: Description ::.
This plugin shows your Rank, HeadShots, Kills & Deaths in a Special Hudmessage whit Sync Options, Colored (customizable colours), Special Effects (titilation), in the left top of the screen, hidding the radar via client commands inside the plugin. Good Plugin For Rank =)

.:: Cvar's ::.

gg_hud_color_red 50 // Color Red in Hud
gg_hud_color_green 135 // Color Green in Hud
gg_hud_color_blue 180 // Color Blue in Hud

.:: Modules/Includes ::.
AMX Mod X Module
CS Stats Inlcude

.:: Changelog ::.
v4.0 - Fixed some Hud Channels Bug
Replaced Normal Show Hud for Show Hud Sync Msg
Added Special Effect to the Hud
Added Cvars For Custom Colors
Added Customizable Hud Position ( X Y )

.:: Plugin ::.
PHP Code:
#include <amxmodx>
#include <csstats>

#define PLUG "GunGame Hud Rank Stats"
#define VERS "4.0"
#define AUTH "eXacT"

new gMsgHudSync

new cvar_hudcolor_red
new cvar_hudcolor_green
new cvar_hudcolor_blue

const Float:HUD_STATS_X 0.00 // Hud Mode Possition X (default 0.00)
const Float:HUD_STATS_Y 0.0 // Hud Mode Possition Y (default 0.0)

public plugin_init() 
{
    
register_plugin(PLUGVERSAUTH)
    
    
gMsgHudSync CreateHudSyncObj()
    
    
cvar_hudcolor_red     register_cvar("gg_hud_color_red""50")
    
cvar_hudcolor_green     register_cvar("gg_hud_color_green""135")
    
cvar_hudcolor_blue    register_cvar("gg_hud_color_blue""180")
}

public 
client_connect(id)
{
    
client_cmd(id"hideradar")
}

public 
client_putinserver(id)
{    
    
set_task(5.0,"ShowRank",id)
}

public 
client_disconnect(id)
{
    if(
task_exists(id))
        
remove_task(id)
}

public 
ShowRank(id)
{    
    static 
redgreenblue
    
static stats[8], body[8]
    new 
ranking get_user_stats(idstatsbody)
    new 
name[33]
    
get_user_name(idname32)
    
    
red get_pcvar_num(cvar_hudcolor_red)
    
green get_pcvar_num(cvar_hudcolor_green)
    
blue get_pcvar_num(cvar_hudcolor_blue)

    
set_hudmessage(redgreenblueHUD_STATS_YHUD_STATS_X11.0255.00.00.03)
    
ShowSyncHudMsg(idgMsgHudSync"Name: %s^nRank: %d^nKills: %d^nDeaths: %d^nHeadShots: %d"namerankingstats[0], stats[1], stats[2])
    
set_task(1.0"ShowRank"id)

Attached Files
File Type: sma Get Plugin or Get Source (gg_hud_stats.sma - 1735 views - 1.6 KB)
__________________

"There is no knowledge, that is not power"

Last edited by eXacT; 10-24-2009 at 01:04.
eXacT is offline
Send a message via MSN to eXacT Send a message via Skype™ to eXacT
eXacT
Veteran Member
Join Date: Apr 2009
Location: Buenos Aires
Old 10-24-2009 , 01:06   Re: GunGame Ranking [Updated v4.0]
Reply With Quote #2

if you WANT comment, please comment
__________________

"There is no knowledge, that is not power"
eXacT is offline
Send a message via MSN to eXacT Send a message via Skype™ to eXacT
goldfoly
BANNED
Join Date: Sep 2009
Old 10-24-2009 , 01:06   Re: GunGame Ranking [Updated v4.0]
Reply With Quote #3

Nicee!
goldfoly is offline
eXacT
Veteran Member
Join Date: Apr 2009
Location: Buenos Aires
Old 10-24-2009 , 01:07   Re: GunGame Ranking [Updated v4.0]
Reply With Quote #4

Thank You (:
__________________

"There is no knowledge, that is not power"
eXacT is offline
Send a message via MSN to eXacT Send a message via Skype™ to eXacT
lukax
Member
Join Date: Oct 2009
Location: o0 -> [bp]
Old 10-24-2009 , 11:41   Re: GunGame Ranking [Updated v4.0]
Reply With Quote #5

Nice i'm using this
__________________
Sorry badlyestness ENGLISH ~~
IF YOU WANT [BP] PM ME !



Last edited by lukax; 10-24-2009 at 11:44.
lukax is offline
Send a message via ICQ to lukax Send a message via AIM to lukax Send a message via MSN to lukax Send a message via Yahoo to lukax
eXacT
Veteran Member
Join Date: Apr 2009
Location: Buenos Aires
Old 10-24-2009 , 18:54   Re: GunGame Ranking [Updated v4.0]
Reply With Quote #6

thaks, if want any plugin, pm me or contacme via MSN ;)

[email protected]

chat =)
__________________

"There is no knowledge, that is not power"
eXacT is offline
Send a message via MSN to eXacT Send a message via Skype™ to eXacT
Sunshine live
Veteran Member
Join Date: May 2009
Location: Berlin
Old 11-06-2009 , 20:36   Re: GunGame Ranking [Updated v4.0]
Reply With Quote #7

nice nice
__________________
Sunshine live is offline
Send a message via ICQ to Sunshine live Send a message via MSN to Sunshine live Send a message via Skype™ to Sunshine live
eXacT
Veteran Member
Join Date: Apr 2009
Location: Buenos Aires
Old 11-16-2009 , 12:45   Re: GunGame Ranking [Updated v4.0]
Reply With Quote #8

thanks
__________________

"There is no knowledge, that is not power"
eXacT is offline
Send a message via MSN to eXacT Send a message via Skype™ to eXacT
Fade05
Junior Member
Join Date: Jan 2009
Old 11-24-2009 , 20:07   Re: GunGame Ranking [Updated v4.0]
Reply With Quote #9

I have a problem with this plugin.

All players have the same points in Ranking...

Quote:
Name:<Nick>
Rank: 2
Kills: 164918
Deaths: 165263
Headshot: 40534
What is the problem?
Fade05 is offline
Mordekay
Squirrel of Fortune
Join Date: Apr 2006
Location: Germany
Old 11-24-2009 , 23:19   Re: GunGame Ranking [Updated v4.0]
Reply With Quote #10

Most likely you are using non-steam?
__________________

Mordekay is offline
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 15:44.


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