Raised This Month: $ Target: $400
 0% 

BF2 Rank Mod 1.5.5 [4/21/11] (pRED*)


Post New Thread Reply   
 
Thread Tools Display Modes
FR0NTLINE
AlliedModders Donor
Join Date: Apr 2006
Location: Riverside Cali
Old 05-01-2012 , 17:50   Re: BF2 Rank Mod 1.5.5 [4/21/11] (pRED*)
Reply With Quote #1301

Would it be difficult to add a good lookin top15 plugin inside of this plugin with some type of bf2
font' background?/awards possibly
__________________
FR0NTLINE is offline
Send a message via AIM to FR0NTLINE Send a message via MSN to FR0NTLINE Send a message via Yahoo to FR0NTLINE
yupinea
Junior Member
Join Date: Jun 2010
Old 06-03-2012 , 14:17   Re: BF2 Rank Mod 1.5.5 [4/21/11] (pRED*)
Reply With Quote #1302

help me , why rank is not save , is reseted in nextmap help please...
yupinea is offline
SyluxLockjaw100
Senior Member
Join Date: Jul 2010
Location: Novaya Russia
Old 06-05-2012 , 20:49   Re: BF2 Rank Mod 1.5.5 [4/21/11] (pRED*)
Reply With Quote #1303

Quote:
Originally Posted by ZASTRELIS View Post
Hallo people, help my with statushud. It's position in the middle of the screen, how I can get it on the bottom?
Type in console "hud_centerid 0"
SyluxLockjaw100 is offline
yupinea
Junior Member
Join Date: Jun 2010
Old 06-07-2012 , 17:05   Re: BF2 Rank Mod 1.5.5 [4/21/11] (pRED*)
Reply With Quote #1304

make please plugin for see in tab rank all players
example [Corporal images] nick Expret kill 10 decese 1

Last edited by yupinea; 06-07-2012 at 17:05.
yupinea is offline
Dennis1986
Junior Member
Join Date: Jun 2008
Old 08-07-2012 , 05:10   Re: BF2 Rank Mod 1.5.5 [4/21/11] (pRED*)
Reply With Quote #1305

hi there , could you help me guys i need to remove the reset option for players , there are few players on my servers using other peoples nick with good points and they change nick and resetting all their stats is it possible to remove the reset option ??


Last edited by Dennis1986; 08-07-2012 at 05:11.
Dennis1986 is offline
Kont
Member
Join Date: Jan 2009
Old 08-07-2012 , 22:30   Re: BF2 Rank Mod 1.5.5 [4/21/11] (pRED*)
Reply With Quote #1306

You can add ADMIN_LEVEL to the regarding menu section in the menu.inl then players cannot reset their own stats OR you can disable it. By disabling you have to edit more modification in the menu.inl file.
Kont is offline
Dennis1986
Junior Member
Join Date: Jun 2008
Old 08-08-2012 , 07:10   Re: BF2 Rank Mod 1.5.5 [4/21/11] (pRED*)
Reply With Quote #1307

Quote:
Originally Posted by Kont View Post
You can add ADMIN_LEVEL to the regarding menu section in the menu.inl then players cannot reset their own stats OR you can disable it. By disabling you have to edit more modification in the menu.inl file.
thanks but i tried like this its still same people can reset their stats please take a look if i did something wrong


//Bf2 Rank Mod menu File
//Contains all the menu checking functions.

#if defined bf2_menu_included
#endinput
#endif
#define bf2_menu_included

public Bf2menu(id)
{
if (!get_pcvar_num(gPcvarBF2Active))
return PLUGIN_CONTINUE;

new menu = menu_create("\rBFHQ: Main Menu", "menu_handler");

menu_additem(menu, "\wHelp Menu", "0", 0);
menu_additem(menu, "\wStats Menu", "1", 0);
menu_additem(menu, "\wAdmin Menu", "2", ADMIN_LEVEL);
menu_additem(menu, "\wReset your Stats", "3", 0 ADMIN_LEVEL);

menu_setprop(menu, MPROP_EXIT, MEXIT_ALL);

menuselection[id]=MENU_MAIN;

menu_display(id, menu, 0);

return PLUGIN_CONTINUE;
}

public helpmenu(id)
{
if (!get_pcvar_num(gPcvarBF2Active))
return PLUGIN_CONTINUE;

new menu = menu_create("\rBFHQ: Help Menu", "menu_handler");

menu_additem(menu, "\wDisplay Help", "0", 0);
menu_additem(menu, "\wDisplay Badge Help 1", "1", 0);
menu_additem(menu, "\wDisplay Badge Help 2", "2", 0);
menu_additem(menu, "\wDisplay Badge Help 3", "3", 0);
menu_additem(menu, "\wDisplay Rank Table", "4", 0);

menu_setprop(menu, MPROP_EXIT, MEXIT_ALL);

menuselection[id]=MENU_HELP;

menu_display(id, menu, 0);

return PLUGIN_CONTINUE;
}

public playerlist(id)
{
if (!get_pcvar_num(gPcvarBF2Active))
return PLUGIN_CONTINUE;

new menu = menu_create("\rBFHQ: Choose Player", "menu_handler");

new players[32],num;
get_players(players,num,"h");
new name[30];
new player;
new tempstring[32];
new idarray[3];

for (new i=0; i<num; i++)
{
player=players[i];
get_user_name(player,name,29);
formatex(tempstring,49,"\w%s",name);
formatex(idarray,2,"%i",player);
menu_additem(menu, tempstring, idarray, 0);
}

menu_setprop(menu, MPROP_EXIT, MEXIT_ALL);

menuselection[id]=MENU_PLAYER;

menu_display(id, menu, 0);

return PLUGIN_CONTINUE;
}

public statsmenu(id)
{
if (!get_pcvar_num(gPcvarBF2Active))
return PLUGIN_CONTINUE;

new menu = menu_create("\rBFHQ: Stats Menu", "menu_handler");

menu_additem(menu, "\wShow Player List", "0", 0);
menu_additem(menu, "\wDisplay your Badges", "1", 0);
menu_additem(menu, "\wDisplay your Stats", "2", 0);
menu_additem(menu, "\wDisplay Server Stats", "3", 0);
Dennis1986 is offline
Kont
Member
Join Date: Jan 2009
Old 08-08-2012 , 22:21   Re: BF2 Rank Mod 1.5.5 [4/21/11] (pRED*)
Reply With Quote #1308

Quote:
Originally Posted by Dennis1986 View Post
thanks but i tried like this its still same people can reset their stats please take a look if i did something wrong


menu_additem(menu, "\wHelp Menu", "0", 0);
menu_additem(menu, "\wStats Menu", "1", 0);
menu_additem(menu, "\wAdmin Menu", "2", ADMIN_LEVEL);
menu_additem(menu, "\wReset your Stats", "3", 0 ADMIN_LEVEL);

Try remote 0 before ADMIN_LEVEL and recompile .sma file.
Kont is offline
Dennis1986
Junior Member
Join Date: Jun 2008
Old 08-09-2012 , 13:52   Re: BF2 Rank Mod 1.5.5 [4/21/11] (pRED*)
Reply With Quote #1309

Quote:
Originally Posted by Kont View Post
Try remote 0 before ADMIN_LEVEL and recompile .sma file.
Thanks a lot dude it works fine i realy appreciate it
Dennis1986 is offline
Saturn
New Member
Join Date: Nov 2012
Old 11-15-2012 , 06:15   Re: BF2 Rank Mod 1.5.5 [4/21/11] (pRED*)
Reply With Quote #1310

connect cs.xopom.com:27017 it's BF2 mod server
first go to cs.xopom.com and register get setinfo _rw and connect the server

Last edited by Saturn; 11-15-2012 at 06:16.
Saturn 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 06:17.


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