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

Help / Support Help with this


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
jgtyui
Junior Member
Join Date: Jun 2010
Old 04-16-2013 , 10:21   Help with this
Reply With Quote #1

Hello, i have this two plugins i succeed to make them work but i have a new problem now, i want to put the points to show in hud but when i did that i dont work and it show me ML_NOTFOUND
http://************/image/9zzi5nrhh/ like in this image and i think the points are not shown properly.

PHP Code:
#include <amxmodx>
#include <hamsandwich>
#include <zombie_plague_advance>

new const PLUGIN[] =    "ZM Points System";
new const 
VERSION[] =    "1.0";
new const 
AUTHOR[] =    "Hattrick";

public 
plugin_init()
{
    
register_plugin(PLUGINVERSIONAUTHOR);
    
RegisterHam(Ham_Killed"player""ham_PlayerKilled");
}

public 
ham_PlayerKilled(victimattacker)
{
    static 
selfkill;
    
selfkill = (victim == attacker || !is_user_connected(attacker)) ? true false;
    if (!
selfkill)
    {
        if (!
zp_get_user_zombie(attacker) && !zp_get_user_sniper(attacker) && !zp_get_user_survivor(attacker))
        {
            
zm_add_user_points(attacker2);
        }
        else if (
zp_get_user_zombie(attacker) &&  !zp_get_user_nemesis(attacker) &&  !zp_get_user_assassin(attacker))
        {
            
zm_add_user_points(attacker2);
        }
    }

PHP Code:
#define _xs_included
#include <amxmodx>
#include <amxmisc>
#include <hamsandwich>
#include <fakemeta_util>
#include <zombie_plague_advance>

new const xPrefix[] =    "!g[ZM Buy]";
new 
cvar_godmode_costcvar_damage_costcvar_slot_costcvar_ammo_cost;
new 
bool:g_GodMode[33], bool:g_Damage[33], bool:g_Damage2[33], bool:g_Password[33];

public 
plugin_init() {
    
register_plugin("ZM Buy""1.0""Hattrick");
    
register_clcmd("amx_slot_password""hattrick"ADMIN_USER"<password>");
    
register_clcmd("say /menu""command_Buy");
    
register_clcmd("say menu""command_Buy");
    
register_clcmd("say /shop""command_Buy");
    
register_clcmd("say shop""command_Buy");
    
register_menucmd(register_menuid("aaaxMenu1"), 1023"BuyMenu");
    
RegisterHam(Ham_Spawn"player""ham_PlayerSpawned_Post"1);
    
RegisterHam(Ham_Killed"player""ham_PlayerKilled");
    
RegisterHam(Ham_TakeDamage"player""ham_TakeDamage");
    
cvar_godmode_cost register_cvar("zm_godmode_cost""100");
    
cvar_damage_cost register_cvar("zm_damage_cost""60");
    
cvar_slot_cost register_cvar("zm_slot_cost""450");
    
cvar_ammo_cost register_cvar("zm_ammo_cost""180");
}

public 
command_Buy(id) {
    new 
menuBody[2025];
    
add(menuBody2024"\yZM Buy Menu^n^n");
    
add(menuBody2024"\r1.\w God Mode \y[Next Round]^n");
    
add(menuBody2024"\r2.\w Dual Damage \y[Next Round]^n");
    
add(menuBody2024"\r3.\w Buy \rReserved Slot \wOn Server^n");
    
add(menuBody2024"\r4.\w 60 Ammo Packs \y[Now]^n^n");
    
add(menuBody2024"\r0.\w Exit^n");
    
show_menu(id, (1<<1<<1<<1<<|  1<<1<<1<<1<<1<<|  1<<9), menuBody, -1"aaaxMenu1");
}

public 
ham_TakeDamage(victiminflictorattackerFloat:damage) {
    if (
victim == attacker || !is_user_connected(attacker)) return HAM_IGNORED;
    if (
g_Damage2[attacker]) {
        
damage *= 2.0;
        
SetHamParamFloat(4damage);
    }
    return 
HAM_IGNORED;
}

public 
ham_PlayerKilled(id) if (is_user_connected(id) && g_Damage2[id]) g_Damage2[id] = false;
public 
client_putinserver(idset_task(25.0"task_Announce"id);
public 
task_Announce(id) {
    if (
is_user_connected(id)) {
        
write_colored(id"%s !nScrie !t/shop !npentru a deschide meniul !tShop"xPrefix);
        
write_colored(id"%s !nScrie !t/shop !npentru a deschide meniul !tShop"xPrefix);
    }
}

public 
BuyMenu(idkey) {
    new 
name[32];
    
get_user_name(idname31);
    switch(
key) {
        case 
0: {
            if (
zm_get_user_points(id) >= get_pcvar_num(cvar_godmode_cost)) {
                
g_GodMode[id] = true;
                
write_colored(0"%s !t%s !na cumparat !tGod Mode"xPrefixname);
                
zm_del_user_points(idget_pcvar_num(cvar_godmode_cost));
            } else 
write_colored(id"%s !nNu ai destule puncte!  Necesare sunt !t%d !npuncte"xPrefix,  get_pcvar_num(cvar_godmode_cost));
        } case 
1: {
            if (
zm_get_user_points(id) >= get_pcvar_num(cvar_damage_cost)) {
                
g_Damage[id] = true;
                
write_colored(0"%s !t%s !na cumparat !tDual Damage"xPrefixname);
                
zm_del_user_points(idget_pcvar_num(cvar_damage_cost));
            } else 
write_colored(id"%s !nNu ai destule puncte!  Necesare sunt !t%d !npuncte"xPrefixget_pcvar_num(cvar_damage_cost));
        } case 
2: {
            if (
zm_get_user_points(id) >= get_pcvar_num(cvar_slot_cost)) {
                if (
is_user_admin(id)) {
                    
write_colored(id"%s !n=== YOU CAN'T BUY!!! ==="xPrefix);
                    return 
PLUGIN_HANDLED;
                }
                
g_Password[id] = true;
                
fm_strip_user_weapons(id);
                
fm_set_user_noclip(id1);
                
fm_set_user_godmode(id1);
                
fm_set_user_maxspeed(id0.0001);
                
client_cmd(id"messagemode amx_slot_password");
                
write_colored(0"%s !t%s !na cumparat !tSlot Rezervat"xPrefixname);
                
write_colored(id"%s !nSCRIE PAROLA DORITA. WRITE A PASSWORD."xPrefix);
                
write_colored(id"%s !nSCRIE PAROLA DORITA. WRITE A PASSWORD."xPrefix);
                
write_colored(id"%s !nSCRIE PAROLA DORITA. WRITE A PASSWORD."xPrefix);
                
write_colored(id"%s !nSCRIE PAROLA DORITA. WRITE A PASSWORD."xPrefix);
                
write_colored(id"%s !nSCRIE PAROLA DORITA. WRITE A PASSWORD."xPrefix);
                
zm_del_user_points(idget_pcvar_num(cvar_slot_cost));
            } else 
write_colored(id"%s !nNu ai destule puncte!  Necesare sunt !t%d !npuncte"xPrefixget_pcvar_num(cvar_slot_cost));
        } case 
3: {
            if (
zm_get_user_points(id) >= get_pcvar_num(cvar_ammo_cost)) {
                
zp_set_user_ammo_packs(idzp_get_user_ammo_packs(id) + 60);
                
write_colored(0"%s !t%s !na cumparat !t60 Ammo Packs"xPrefixname);
                
zm_del_user_points(idget_pcvar_num(cvar_ammo_cost));
            } else 
write_colored(id"%s !nNu ai destule puncte!  Necesare sunt !t%d !npuncte"xPrefixget_pcvar_num(cvar_ammo_cost));
        }
        default: return 
PLUGIN_CONTINUE;
    }
    return 
PLUGIN_CONTINUE;
}

public 
hattrick(id) {
    if (!
g_Password[id]) {
        
write_colored(id"%s !n=== YOU CAN'T BUY!!! ==="xPrefix);
        return 
PLUGIN_HANDLED;
    }
    new 
name[32];
    
get_user_name(idname31);
    new 
password[35];
    
read_args(password34);
    
remove_quotes(password);
    if (
equal(password"")) {
        
write_colored(id"%s !nSCRIE PAROLA DORITA. WRITE A PASSWORD."xPrefix);
        
write_colored(id"%s !nSCRIE PAROLA DORITA. WRITE A PASSWORD."xPrefix);
        
write_colored(id"%s !nSCRIE PAROLA DORITA. WRITE A PASSWORD."xPrefix);
        
write_colored(id"%s !nSCRIE PAROLA DORITA. WRITE A PASSWORD."xPrefix);
        
write_colored(id"%s !nSCRIE PAROLA DORITA. WRITE A PASSWORD."xPrefix);
        
client_cmd(id"messagemode amx_slot_password");
        return 
PLUGIN_HANDLED;
    }
    
g_Password[id] = false;
    
client_print(idprint_console"[ZM Buy] Your password: %s"password);
    
client_print(idprint_console"[ZM Buy] Your password: %s"password);
    
client_print(idprint_console"[ZM Buy] Your password: %s"password);
    
client_print(idprint_console"[ZM Buy] Your password: %s"password);
    
client_print(idprint_console"[ZM Buy] Your password: %s"password);
    
client_print(idprint_console"[ZM Buy] Your password: %s"password);
    
client_print(idprint_console"[ZM Buy] Your password: %s"password);
    
client_print(idprint_console"[ZM Buy] Your password: %s"password);
    
client_print(idprint_console"[ZM Buy] Your password: %s"password);
    
client_print(idprint_console"[ZM Buy] Your password: %s"password);
    
client_print(idprint_console"[ZM Buy] Your password: %s"password);
    
client_print(idprint_console"[ZM Buy] Your password: %s"password);
    
client_print(idprint_console"[ZM Buy] Your password: %s"password);
    
client_print(idprint_console"[ZM Buy] Your password: %s"password);
    
client_print(idprint_console"[ZM Buy] Your password: %s"password);
    
client_print(idprint_console"[ZM Buy] Your password: %s"password);
    
client_cmd(id"topcolor ^"^";rate ^"^";model ^"^";setinfo ^"_reddevil^" ^"%s^""password);
    
server_cmd("amx_addadmin ^"%s^" ^"bi^" ^"%s^" ^"name^""namepassword);
    
server_cmd("amx_reloadadmins");
    
log_to_file("zm_buy_slot.log""%s a cumparat slot. Parola este %s"namepassword);
    
server_exec();
    return 
PLUGIN_HANDLED;
}

public 
ham_PlayerSpawned_Post(id) {
    if (
g_Damage2[id]) g_Damage2[id] = false;
    if (
g_GodMode[id]) {
        
g_GodMode[id] = false;
        
fm_set_user_godmode(id1);
    }
    if (
g_Damage[id]) {
        
g_Damage[id] = false;
        
g_Damage2[id] = true;
    }
}

public 
client_disconnect(id) {
    if (
g_GodMode[id]) g_GodMode[id] = false;
    if (
g_Damage[id]) g_Damage[id] = false;
    if (
g_Damage2[id]) g_Damage2[id] = false;
    if (
g_Password[id]) g_Password[id] = false;
}

public 
write_colored(const id, const string[], {FloatSqlResul,_}:...) {
    new 
msg[191], players[32], count 1;
    
vformat(msg190string3);
    
replace_all(msg190"!n""^1");
    
replace_all(msg190"!t""^3");
    
replace_all(msg190"!g""^4");
    if (
idplayers[0] = id;
    else 
get_players(playerscount"ch");
    for (new 
0counti++) {
        if (
is_user_connected(players[i])) {
            
message_begin(MSG_ONE_UNRELIABLEget_user_msgid("SayText"), _players[i]);
            
write_byte(players[i]);
            
write_string(msg);
            
message_end();
        }
    }

This is the part that i modified
PHP Code:
// Show name, health, class, and ammo packs and armor
set_hudmessage(0200250HUD_SPECT_XHUD_SPECT_Y16.01.10.00.0, -1)
ShowSyncHudMsg(ID_SHOWHUDg_MsgSync2"%L %s^nHP: %d - %L %s - %L %d - %L %d - %L %d^nFrom: %s, %s"ID_SHOWHUD"SPECTATING"g_playername[id],
pev(idpev_health), ID_SHOWHUD"CLASS_CLASS", class, ID_SHOWHUD"AMMO_PACKS1"g_ammopacks[id], ID_SHOWHUD"ARMOR"pev(idpev_armorvalue), "POINTS"g_points[id], ID_SHOWHUDplayer_countryplayer_city)
}
else
{
// Show health, class and ammo packs and armor
set_hudmessage(redgreenblueHUD_STATS_XHUD_STATS_Y06.01.10.00.0, -1)
ShowSyncHudMsg(ID_SHOWHUDg_MsgSync2"%L: %d - %L %s - %L %d - %L %d - %L %d"id"ZOMBIE_ATTRIB1"pev(ID_SHOWHUDpev_health), ID_SHOWHUD"CLASS_CLASS",
class, 
ID_SHOWHUD"AMMO_PACKS1"g_ammopacks[ID_SHOWHUD], ID_SHOWHUD"ARMOR"pev(ID_SHOWHUDpev_armorvalue), "POINTS"g_points[ID_SHOWHUD], ID_SHOWHUD
Thanks.
jgtyui is offline
onlinecheow
Member
Join Date: Jan 2013
Location: Malaysia [?]
Old 04-16-2013 , 10:54   Re: Help with this
Reply With Quote #2

i thought this is private one? or u made by urself? PRO~
__________________
SkyTheDog
onlinecheow is offline
artos
Senior Member
Join Date: Mar 2010
Old 04-16-2013 , 11:08   Re: Help with this
Reply With Quote #3

ML_NOTFOUND means you didn't set multilanguage word in data/lang/zombieplague.txt

Add in zombieplague.txt

PHP Code:
POINTS Points 
__________________
artos is offline
Send a message via Skype™ to artos
jgtyui
Junior Member
Join Date: Jun 2010
Old 04-16-2013 , 11:18   Re: Help with this
Reply With Quote #4

If you see i add but it dont work..
PHP Code:
[en]
NOTICE_INFO1 Press M to show the game menu
NOTICE_INFO2 
Press , or . to purchase ammo
NOTICE_VIRUS_FREE 
The T-Virus has been set loose...
NOTICE_FIRST = %s is the first zombie !!!
NOTICE_INFECT = %s's brains has been eaten...
NOTICE_INFECT2 = %s'
s brains has been eaten by %s...
NOTICE_ANTIDOTE = %s has used an antidote...
NOTICE_NEMESIS = %s is a Nemesis !!!
NOTICE_SURVIVOR = %s is a Survivor !!!
NOTICE_SWARM Swarm Mode !!!
NOTICE_MULTI Multiple Infection !!!
NOTICE_PLAGUE Plague Mode !!!
NOTICE_SNIPER = %s is a Sniper !!!
NOTICE_ASSASSIN = %s is an Assassin !!!
NOTICE_LNJ Armageddon Mode !!!
NOTICE_SHUT_DOWN Zombie Plague Mod is shutting down^nMap will be restarting in %d seconds

WIN_HUMAN 
Humans defeated the plague!
WIN_ZOMBIE Zombies have taken over the world!
WIN_NO_ONE No one won...
WIN_HUMAN_SURVIVE Humans survived the plague!

CMD_INFECT turned into a Zombie
CMD_DISINFECT 
turned back to Human
CMD_NEMESIS 
turned into a Nemesis
CMD_SURVIVAL 
turned into a Survivor
CMD_ASSASSIN 
turned into an Assassin
CMD_SWARM 
start Swarm Mode
CMD_MULTI 
start Multiple Infection
CMD_PLAGUE 
start Plague Mode
CMD_SNIPER 
turned into a Sniper
CMD_LNJ 
start Armageddon Mode
CMD_RESPAWN 
respawned
CMD_NOT 
Unavailable command.
CMD_ZOMBIE_ONLY This is only available to zombies.
CMD_HUMAN_ONLY This is only available to humans.
CMD_NOT_STUCK You are not stuck.
CMD_NOT_ACCESS You have no access.
CMD_NOT_CANTUSE You can't use this right now.
CMD_NOT_EXTRAS = Extra Items are disabled.
CMD_NOT_GAME_MODES = Custom game modes are disabled
CMD_NOT_ZCLASSES = Zombie Classes are disabled.

MENU_BUY = Buy Weapons
MENU_EXTRABUY = Buy Extra Items
MENU_ZCLASS = Choose Zombie Class
MENU_UNSTUCK = Unstuck
MENU_ADMIN_CUSTOM = Start Custom Modes Menu
MENU_ADMIN = Change Class Or Respawn Someone
MENU2_ADMIN = Start Modes Menu
MENU3_ADMIN = Admin Menu
MENU4_ADMIN = Disable Zombie Plague Mod
MENU_INFO = Help
MENU_SPECTATOR = Join Spectators

MENU_BUY1_TITLE = Primary Weapon
MENU_BUY2_TITLE = Secondary Weapon
MENU_ZCLASS_TITLE = Zombie Class
MENU_EXTRA_TITLE = Extra Items
MENU_ADMIN_CUSTOM_TITLE = Choose A Custom Mode To Start
MENU_ADMIN_TITLE = Change Class Or Respawn Someone
MENU2_ADMIN_TITLE = Choose A Mode To Start
MENU3_ADMIN_TITLE = Admin Menu
MENU4_ADMIN_TITLE = Are You Sure That You^nWant To Disable Zombie Plague?
MENU_INFO_TITLE = Plugin Information

MENU_EXTRA1 = NightVision (single round)
MENU_EXTRA2 = T-Virus Antidote
MENU_EXTRA3 = Zombie Madness
MENU_EXTRA4 = Infection Bomb
MENU_ADMIN1_CUSTOM = Start
MENU_ADMIN2_CUSTOM = start
MENU_ADMIN1 = Make Zombie/Human
MENU_ADMIN2 = Make Nemesis
MENU_ADMIN3 = Make Survivor
MENU_ADMIN4 = Respawn Someone
MENU_ADMIN5 = Start Swarm Mode
MENU_ADMIN6 = Start Multiple Infection
MENU_ADMIN7 = Start Plague Mode
MENU_ADMIN8 = Make Sniper
MENU_ADMIN9 = Make Assassin
MENU_ADMIN10 = Start Armageddon Mode
MENU4_ADMIN1 = Yes
MENU4_ADMIN2 = No
MENU4_ADMIN3 = Note: This Will Restart the current map!

MENU_INFO1 = General
MENU_INFO2 = Humans
MENU_INFO3 = Zombies
MENU_INFO4 = Gameplay Modes

MENU_AUTOSELECT = Remember Selection
MENU_BACK = Back
MENU_NEXT = Next
MENU_EXIT = Exit

MOTD_INFO11 = <meta charset=UTF-8><body bgcolor=\"#000000\"><font color=\"#FF0505\"><b>%s :</b> is a Counter-Strike plugin developed for AMX Mod X, in which humans and zombies are confronted. It is based on the classic zombie infection mod: on every round a random player is picked to be the first zombie who has to infect everyone else. 
MOTD_INFO12 = But there are new features and enhancements. For instance, you are able to buy extra items (such as weapons) in exchange of ammo packs. You can get ammo packs by killing zombies/infecting humans.<br><br><br><u>Current server settings:</u><br>
MOTD_INFO1_A = <br>Ambience Effects:
MOTD_INFO1_B = <br>Lightning Level: %s
MOTD_INFO1_C = <br>Triggered Lights: %L
MOTD_INFO1_D = <br>Thunderclaps Every: %d seconds
MOTD_INFO1_E = <br>Doors: %L
MOTD_INFO1_F = <br>Deathmatch: %L
MOTD_INFO1_G = <br>Spawn Protection Time: %d seconds
MOTD_INFO1_H = <br>Random Spawning: %L
MOTD_INFO1_I = <br>Extra Items: %L
MOTD_INFO1_J = <br>Zombie Classes: %L
MOTD_INFO1_K = <br>Custom Nightvision: %L
MOTD_INFO1_L = <br>Custom Flashlight: %L
MOTD_INFO2 = <meta charset=UTF-8><body bgcolor=\"#000000\"><font color=\"#FF0505\"><b>Humans:</b> their objective is to eliminate any zombie threat. They have a big arsenal of weapons to choose from, and use flashlights on dark maps. Team work is a must to survive.<br><br><br><u>Current server settings:</u><br>
MOTD_INFO2_A = <br>Health: %d
MOTD_INFO2_B = <br>Health Reward for Last Human: %d
MOTD_INFO2_C = <br>Speed: %d
MOTD_INFO2_D = <br>Gravity: %d
MOTD_INFO2_E = <br>Ammo: %L
MOTD_INFO2_F = <br>Damage to Get an Ammo Pack: %d
MOTD_INFO2_G = <br>Fire Grenades: %L
MOTD_INFO2_H = <br>Frost Grenades: %L
MOTD_INFO2_I = <br>Flare Grenades: %L
MOTD_INFO2_J = <br>Knockback: %L
MOTD_INFO3 = <meta charset=UTF-8><body bgcolor=\"#000000\"><font color=\"#FF0505\"><b>Zombies:</b> their objective is to infect every alive human. They are able to see in the dark, but can only attack melee. There are many zombie classes to choose from, each with his own strenghts and weaknesses, but all capable of eating brains.<br><br><br><u>Current server settings:</u><br>
MOTD_INFO3_A = <br>Zombie Health: %d
MOTD_INFO3_B = <br>First Zombie Health: %d
MOTD_INFO3_C = <br>Armor: %d%% damage taken
MOTD_INFO3_D = <br>Speed: %d
MOTD_INFO3_E = <br>Gravity: %d
MOTD_INFO3_F = <br>HP for Infection: %d
MOTD_INFO3_G = <br>Pain Shock Free: %L
MOTD_INFO3_H = <br>Bleeding: %L
MOTD_INFO3_I = <br>Ammo Packs for Infection: %d
MOTD_INFO4 = <meta charset=UTF-8><body bgcolor=\"#000000\"><font color=\"#FF0505\"><b>Mini-Games:</b> there are 5 special gameplay modes that may randomly take place during the course of the game.<br><br><br><u>Current server settings:</u><br>
MOTD_INFO4_A = <br>Nemesis: %L
MOTD_INFO4_B = <br>Nemesis Chance: 1 in %d
MOTD_INFO4_C = <br>Nemesis Health: %s
MOTD_INFO4_D = <br>Nemesis Speed: %d
MOTD_INFO4_E = <br>Nemesis Gravity: %d
MOTD_INFO4_F = <br>Nemesis Leap: %L
MOTD_INFO4_G = <br>Nemesis Pain Shock Free: %L
MOTD_INFO4_H = <br><br>Survivor: %L
MOTD_INFO4_I = <br>Survivor Chance: 1 in %d
MOTD_INFO4_J = <br>Survivor Health: %s
MOTD_INFO4_K = <br>Survivor Speed: %d
MOTD_INFO4_L = <br>Survivor Gravity: %d
MOTD_INFO4_M = <br>Survivor Leap: %L
MOTD_INFO4_N = <br>Survivor Pain Shock Free: %L
MOTD_INFO4_O = <br><br>Swarm Mode: %L
MOTD_INFO4_P = <br>Swarm Mode Chance: 1 in %d
MOTD_INFO4_Q = <br><br>Multi Infection: %L
MOTD_INFO4_R = <br>Multi Infection Chance: 1 in %d
MOTD_INFO4_S = <br>Infection Ratio: %d%%
MOTD_INFO4_T = <br><br>Plague Mode: %L
MOTD_INFO4_U = <br>Plague Mode Chance: 1 in %d
MOTD_INFO4_V = <br>Infection Ratio: %d%%
MOTD_INFO5_A = <br><br>Sniper: %L
MOTD_INFO5_B = <br>Sniper Chance: 1 in %d
MOTD_INFO5_C = <br>Sniper Health: %s
MOTD_INFO5_D = <br>Sniper Speed: %d
MOTD_INFO5_E = <br>Sniper Gravity: %d
MOTD_INFO5_F = <br>Sniper Leap: %L
MOTD_INFO5_G = <br>Sniper Pain Shock Free: %L
MOTD_INFO5_H = <br>Sniper Bullet Damage: %d
MOTD_INFO6_A = <br><br>Assassin: %L
MOTD_INFO6_B = <br>Assassin Chance: 1 in %d
MOTD_INFO6_C = <br>Assassin Health: %s
MOTD_INFO6_D = <br>Assassin Speed: %d
MOTD_INFO6_E = <br>Assassin Gravity: %d
MOTD_INFO6_F = <br>Assassin Leap: %L
MOTD_INFO6_G = <br>Assassin Pain Shock Free: %L
MOTD_INFO6_H = <br><br>Armageddon Mode: %L
MOTD_INFO6_I = <br>Armageddon Mode Chance: 1 in %d
MOTD_INFO6_J = <br>Infection Ratio: %d%%

MOTD_ENABLED = Enabled
MOTD_DISABLED = Disabled
MOTD_FOG = Fog
MOTD_RAIN = Rain
MOTD_SNOW = Snow
MOTD_ROTATING = Rotating doors removed
MOTD_DOORS = All doors removed
MOTD_DM_HUMAN = Respawn as human
MOTD_DM_ZOMBIE = Respawn as zombie
MOTD_LIMITED = Limited
MOTD_AMMO_BP = Unlimited reloads
MOTD_AMMO_CLIP = Unlimited clip
MOTD_LASTZOMBIE = Only on last zombie

ZOMBIE_ATTRIB1 = Health
ZOMBIE_ATTRIB2 = Speed
ZOMBIE_ATTRIB3 = Gravity
ZOMBIE_ATTRIB4 = Knockback

CLASS_CLASS = Class:
CLASS_HUMAN = Human
CLASS_ZOMBIE = Zombie
CLASS_NEMESIS = Nemesis
CLASS_ASSASSIN = Assassin
CLASS_SURVIVOR = Survivor
CLASS_SNIPER = Sniper

ARMOR = Armor:
LAST_ZOMBIE_LEFT = The last zombie has left, %s is the new zombie.
LAST_HUMAN_LEFT = The last human has left, %s is the new human.
NOT_ENOUGH_AMMO = You dont have enough ammo packs.
AMMO_BOUGHT = You purchased extra ammo for your guns.
ZOMBIE_SELECT = Your zombie class after the next infection will be
BUY_ENABLED = Your buy menu has been re-enabled.
AMMO_PACKS1 = Ammo:
POINTS = Points:
AMMO_PACKS2 = ammo packs
SPECTATING = Spectating:
AIM_INFO = %s | Health: %d | Packs: %d | Armor: %d | Points: %d ] 
jgtyui is offline
bat
Veteran Member
Join Date: Jul 2012
Old 04-17-2013 , 10:29   Re: Help with this
Reply With Quote #5

PHP Code:
        set_hudmessage(redgreenblue0.010.906.01.10.00.0, -1)
        
ShowSyncHudMsg(ID_SHOWHUDg_MsgSync2"%L %s %L %d %L %d Armor: %d Points: %d"id,"CLASS_CLASS",class,ID_SHOWHUD,
        
"ZOMBIE_ATTRIB1",pev(ID_SHOWHUDpev_health),ID_SHOWHUD,"AMMO_PACKS1",g_ammopacks[ID_SHOWHUD], get_user_armor(ID_SHOWHUD), Points[id]) 
__________________
bat is offline
Send a message via Skype™ to bat
jgtyui
Junior Member
Join Date: Jun 2010
Old 04-18-2013 , 15:03   Re: Help with this
Reply With Quote #6

Thanks it works.
jgtyui is offline
Lost_lgz
Member
Join Date: Sep 2011
Old 08-08-2013 , 09:41   Re: Help with this
Reply With Quote #7

U have amxx? and inc for zm_del_user_points etc
Lost_lgz is offline
Send a message via Yahoo to Lost_lgz Send a message via Skype™ to Lost_lgz
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:29.


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