View Single Post
nightscreem
Veteran Member
Join Date: Jul 2004
Location: Belgium
Old 08-15-2006 , 13:44   Re: New Round/Player Spawn/Round Start/Round End - do Not mess it
Reply With Quote #12

Quote:
Originally Posted by Zenith77 View Post
For those of you that use fakemeta, you can do this:

Code:
/* Plugin generated by AMXX-Studio */ #include <amxmodx> #include <amxmisc> #include <fakemeta> #define PLUGIN "New Plugin" #define VERSION "1.0" #define AUTHOR "Author" public plugin_init() {     register_plugin(PLUGIN, VERSION, AUTHOR)     register_forward(FM_Spawn, "Forward_Spawn", 1); } public Forward_Spawn(ent) {     if (!is_user_alive(ent)) // you could also use is_user_connected()         return FMRES_IGNORED;             // Code...         return FMRES_HANDLED; }

Never tested this before though, so someone let me know if I'm wrong.
what's the best if you use fakemate in a plugin this or the event?
__________________
- Bye bye!
nightscreem is offline