AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Suggestions / Requests (https://forums.alliedmods.net/forumdisplay.php?f=12)
-   -   Death Effect Plugin! (https://forums.alliedmods.net/showthread.php?t=232677)

aNTicheaterx. 01-03-2014 06:44

Death Effect Plugin!
 
Hi, I need a death effect plugin. When someone dies he will explode
in blood and in fleshs and he's body will be invisible. If someone can
make this plugin it will be really nice. This plugin exist but it has been
deleted, here is a link of a video how the plugin be like.
http://www.youtube.com/watch?v=QMYHC-M8lK8
Thx.!

wickedd 01-03-2014 07:21

Re: Death Effect Plugin!
 
Search "Killing Particles".

BlueGaming 01-03-2014 07:51

Re: Death Effect Plugin!
 
try this :
PHP Code:

#include <amxmodx>
#include <engine>
// a lot of code by amxxmodx.ru & cruyff !
#pragma semicolon            1
#pragma tabsize             0

#define PLUGIN "Death Effect Explosion"
#define VERSION "0.1"
#define AUTHOR "Akman"


new _:g_iSpiteExlplosion;

public 
plugin_precache()
{
    
    
g_iSpiteExlplosion precache_model("sprites/dexplo.spr");
}

public 
plugin_init() 
{
    
register_plugin(PLUGINVERSIONAUTHOR);
    
    
// ham call !
    
register_event"DeathMsg""eDeathMsg""a" );
    
}

// Thanks cruyff
public eDeathMsg( )
{
    new 
v_Victim read_data); // Victima.
    
_Explosion(v_Victim);
}

//    Thanks amxxmodx.ru for code !
public _Explosion(id)
{
    new 
_:iAimOrigin[3];
    
    
get_user_origin(idiAimOrigin0);
    
    
    
    
message_begin(MSG_BROADCASTSVC_TEMPENTITY);    
    
    
write_byte(TE_EXPLOSION);            
    
    
/* ?????????? */
    
write_coord(iAimOrigin[0]);            
    
write_coord(iAimOrigin[1]);           
    
write_coord(iAimOrigin[2]);            
    
    
write_short(g_iSpiteExlplosion);        
    
    
write_byte(10);    
    
write_byte(10);    
    
write_byte(0);    
    
    
message_end();                     
    
    return 
PLUGIN_HANDLED;


http://i.imgur.com/4VSamsl.png

aNTicheaterx. 01-03-2014 09:37

Re: Death Effect Plugin!
 
No, can you please check the youtube link and then you will understand what I mean!
I need Blood-Flesh-Thunder effect when the victime dies not only an explosion.
But thnx for trying.

aNTicheaterx. 01-17-2014 13:56

Need pro coder For this Death plugin!
 
Hi, guys I've alredy send a thread to make this
plugin but I repost it becouse I really need it
without this plugin my server wouldn't work so good
-------------------------------------------------
So If some can make this death plugin like in the link
below then say it please becouse I really need it!
The coder of this plugin isn't active anymore I though
so... you can make it without probleme!
-------------------------------------------------
http://www.youtube.com/watch?v=QMYHC-M8lK8
thank you!:cry:

hornet 01-18-2014 05:46

Re: Death Effect Plugin!
 
Something like this https://forums.alliedmods.net/showthread.php?p=970651

aNTicheaterx. 01-19-2014 14:42

Re: Death Effect Plugin!
 
I already create it! But thanks for your help.

Fraggor 12-21-2021 07:37

Re: Death Effect Plugin!
 
@aNTicheaterx. can you share it please ?


All times are GMT -4. The time now is 14:32.

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