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

Req. Name of plugin?


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
san12345
Senior Member
Join Date: Nov 2014
Old 07-29-2015 , 11:50   Req. Name of plugin?
Reply With Quote #1

here is a screenshot of that plugins where it says ..died when flying like pigeon..
what is the name of this plugin and where can i get it?
and 1 more plugin when only 1 player in team is alive that message shows..everything depends on you.
Attached Files
File Type: zip new winrar archive.zip (556.7 KB, 46 views)
san12345 is offline
wickedd
Veteran Member
Join Date: Nov 2009
Old 07-29-2015 , 17:37   Re: Req. Name of plugin?
Reply With Quote #2

Next time post the pictures here or link to them. Anyway, the first plugin might be private. The second one is part of AMXX. Just download Mod Addons Packs, then go to the statsmenu and true it on.
__________________
Just buy the fucking game!!!!
I hate No-Steamers and lazy ass people.
wickedd is offline
Loupu.
Member
Join Date: Jul 2013
Old 07-29-2015 , 18:16   Re: Req. Name of plugin?
Reply With Quote #3

for 1 picture.. it'a a type of micstats plugin , you just have to find it
second one is ultimate sounds

Edit: might i found it
Attached Files
File Type: sma Get Plugin or Get Source (micstats.sma - 514 views - 39.5 KB)

Last edited by Loupu.; 07-29-2015 at 18:26.
Loupu. is offline
san12345
Senior Member
Join Date: Nov 2014
Old 07-30-2015 , 05:44   Re: Req. Name of plugin?
Reply With Quote #4

thanks for reply but i dont see messages which are in micstats plugin

Last edited by san12345; 07-30-2015 at 06:35.
san12345 is offline
wickedd
Veteran Member
Join Date: Nov 2009
Old 07-30-2015 , 07:20   Re: Req. Name of plugin?
Reply With Quote #5

After you install Mod Addons Pack, go to amxmodmenu, Stats Settings and turn on the Last Man options.
__________________
Just buy the fucking game!!!!
I hate No-Steamers and lazy ass people.

Last edited by wickedd; 07-30-2015 at 07:20.
wickedd is offline
Loupu.
Member
Join Date: Jul 2013
Old 07-30-2015 , 14:47   Re: Req. Name of plugin?
Reply With Quote #6

Dude , just take a look into plugin and you will see messages
ex line 223-227:
new g_AirKillMessages[3][] = {
"$vn was killed by $kn^nwhile he was in the air",
"$vn was killed by $kn^nwhile he was flying like a pigeon",
"$vn could not reach the ground^nbecause he was shot in the air by $kn"
}

and many others...
Loupu. is offline
san12345
Senior Member
Join Date: Nov 2014
Old 07-31-2015 , 05:24   Re: Req. Name of plugin?
Reply With Quote #7

I don't see messages in game.
I play with bots but no messages shown in game. Why?
san12345 is offline
iReaL
AlliedModders Donor
Join Date: Apr 2011
Location: Romania
Old 07-31-2015 , 12:14   Re: Req. Name of plugin?
Reply With Quote #8

https://forums.alliedmods.net/showthread.php?p=416080 ?
__________________
Angrry#3146

iReaL is offline
san12345
Senior Member
Join Date: Nov 2014
Old 08-01-2015 , 02:43   Re: Req. Name of plugin?
Reply With Quote #9

Loupu your plugin micstats.sma is for AMX MOD and it requires vexdum module. im using AMX MOD X and when i try to edit vexdum to engine module i get errors.
can u write code for amx modx and use engine module?

Last edited by san12345; 08-02-2015 at 09:48.
san12345 is offline
Loupu.
Member
Join Date: Jul 2013
Old 08-02-2015 , 14:43   Re: Req. Name of plugin?
Reply With Quote #10

This plugin will show message when a player is killed in air , that is what u was asking for
PHP Code:
#include <amxmodx> 
#include <csx> 
#include <fakemeta> 

#define PLUGIN "Air Kill" 
#define VERSION "1.0" 
#define AUTHOR "Krot@al / kWo" 

#define FL_ONGROUND2    (FL_ONGROUND | FL_PARTIALGROUND | FL_INWATER | FL_CONVEYOR | FL_FLOAT) 

new const g_AirKillMessages[][] = { 
    
"%s was killed by %s^nwhile he was in the air"
    
"%s was killed by %s^nwhile he was flying like a pigeon" 


new 
toggle_plugin 
new g_iMaxPlayers 

public plugin_init() { 
    
register_plugin(PLUGINVERSIONAUTHOR
    
toggle_plugin register_cvar("amx_airkill","1"
    
register_event("DeathMsg""Event_DeathMsg""a"
    
g_iMaxPlayers get_maxplayers() 


public 
Event_DeathMsg() 

    if( 
get_pcvar_num(toggle_plugin) ) 
    { 
        new 
killer read_data(1
        new 
victim read_data(2
        if(    
killer != victim             &&  
            
<= killer <= g_iMaxPlayers    &&  
            !(
pev(victimpev_flags) & FL_ONGROUND2) ) 
        { 
            static 
killer_name[32], victim_name[32
            
get_user_name(killerkiller_name31
            
get_user_name(victimvictim_name31
            
client_print(0print_chatg_AirKillMessages[random(sizeof(g_AirKillMessages))], victim_namekiller_name
        } 
    } 

Loupu. 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 13:38.


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