Raised This Month: $ Target: $400
 0% 

Show also while spectating


  
 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
Author Message
mazmaajinsh
Senior Member
Join Date: Apr 2005
Location: Latvia
Old 05-14-2012 , 07:38   Show also while spectating
Reply With Quote #1

Hello.
I found this plugin, and what it does is shows information about player on which you are aiming - name, HP, armor.

But could someone show me, how to make it also display the information of the person while you are spectating him?

Code:
/*****************************************************\ =============================== || [ZP] Aim Info Plugin v1.0 || =============================== ||DESCRIPTION||     When you aim at your friend, a hud message     appears which shows you the Name, HP,     Armor and Ammo Packs of your friend. ||CREDITS||     - AMX MOD X Team ----> For most of the natives     - MeRcyLeZZ ----> For ZP 4.3     - Sn!ff3r ----> For the Actual Aim info Plugin \*****************************************************/ #include <amxmodx> #include <zombieplague> #define PLUGIN "Aim Info Plugin" #define VERSION "1.0" #define AUTHOR "@bdul!+Sn!ff3r" new g_status_sync public plugin_init() {     register_plugin(PLUGIN, VERSION, AUTHOR)     register_event("StatusValue", "showStatus", "be", "1=2", "2!0")     register_event("StatusValue", "hideStatus", "be", "1=1", "2=0")     register_dictionary("zp_aim_info.txt");         g_status_sync = CreateHudSyncObj() } public showStatus(id) {     if(!is_user_bot(id) && is_user_connected(id))     {         new name[32], pid = read_data(2)             get_user_name(pid, name, 31)         new color1 = 0, color2 = 0             new team1 = zp_get_user_zombie(id), team2 = zp_get_user_zombie(pid)             if (team2 == 1)             color1 = 255         else             color2 = 255                         if (team1 == team2)    // friend         {             set_hudmessage(color1, 50, color2, -1.0, 0.60, 1, 0.01, 3.0, 0.01, 0.01, -1)             ShowSyncHudMsg(id, g_status_sync, "%L", LANG_PLAYER, "AIM_INFO", name, get_user_health(pid), get_user_armor(pid), zp_get_user_ammo_packs(pid))         }     } } public hideStatus(id) {     ClearSyncHud(id, g_status_sync) } /* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE *{\\ rtf1\\ ansi\\ ansicpg1252\\ deff0\\ deflang1033{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ f0\\ fs16 \n\\ par } */
__________________
Ahujena

Last edited by mazmaajinsh; 05-14-2012 at 07:38.
mazmaajinsh is offline
 


Thread Tools
Display Modes

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 00:24.


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