Raised This Month: $ Target: $400
 0% 

Quick Jump


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
VEN
Veteran Member
Join Date: Jan 2005
Old 12-31-2006 , 09:37   Re: Quick Jump
Reply With Quote #1

For example:
Code:
#include <amxmodx> #include <fakemeta> #define MAX_PLAYERS 32 new bool:g_in_the_air[MAX_PLAYERS + 1] public plugin_init() {     register_forward(FM_PlayerPostThink, "forward_player_postthink") } public forward_player_postthink(id) {     if (!is_user_alive(id))         return FMRES_IGNORED     if (!(pev(id, pev_flags) & FL_ONGROUND))         g_in_the_air[id] = true     else if (g_in_the_air[id]) {         set_pev(id, pev_watertype, CONTENTS_WATER)         g_in_the_air[id] = false     }     return FMRES_IGNORED }
VEN 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 22:23.


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