Thread: Auto Revive
View Single Post
Devil259
Veteran Member
Join Date: Dec 2009
Location: France (59)
Old 04-28-2012 , 14:01   Re: Auto Revive
Reply With Quote #12

You've to install Infinite Round and use that :

Code:
#include < amxmodx > #include < fakemeta > #include < hamsandwich > new g_iOrigin[ 33 ][ 3 ]; public plugin_init( ) {     RegisterHam( Ham_Killed, "player", "hamKilledPre" );     RegisterHam( Ham_Killed, "player", "hamKilledPost", 1 ); } public hamKilledPre( id ) {     pev( id, pev_origin, g_iOrigin[ id ] ); } public hamKilledPost( id ) {     ExecuteHamB( Ham_CS_RoundRespawn, id );     set_pev( id, pev_origin, g_iOrigin[ id ] ); }
__________________
You can do anything you set your mind to, man.


Last edited by Devil259; 04-30-2012 at 07:15.
Devil259 is offline