View Single Post
drakunovu6
Member
Join Date: Sep 2017
Old 09-13-2020 , 10:28   Re: Anti Helicopter-Blocking
Reply With Quote #10

Quote:
Originally Posted by DJEarthQuake View Post
One can still modify the title!
I searched also and found every non-related plugin in existence.
Assuming you mean VIP escape zone where these planes, trains, and automobiles dwell 'at the end of the map'.

Code:
#include amxmodx #include cstrike #include engine #include fakemeta public plugin_init() {     register_plugin("vip zone antiblocking", "1.0", "SPiNX");     register_forward(FM_PlayerPreThink, "zone_think", 1); } public zone_think(cstrike_user) {     if (cs_get_user_mapzones(cstrike_user) == CS_MAPZONE_VIP_SAFETY)         fakedamage(cstrike_user,"VIP ZONE HACKING",1.0,DMG_TIMEBASED); }

I tested this plugin on as_oilrig. VIP can escape but the campers there are handled. Zombie the code how you please.
I think he doesn't want that, he wants that in certain maps (example ze_area51_v1), if you are in the windows of the train, it stucks so he wants to fix that.
drakunovu6 is offline