AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Suggestions / Requests (https://forums.alliedmods.net/forumdisplay.php?f=12)
-   -   Anti Helicopter-Blocking (https://forums.alliedmods.net/showthread.php?t=327338)

nacho312 09-12-2020 21:15

Anti Helicopter-Blocking
 
Hello, I'm looking for a plugin for my zombie escape server.
A plugin which gives to the player damage when he's trying to block the helicopter/car/train/etc at the end of the map, I searched, but I didn't find it yet.


EDIT: Sorry, I forgot to put [req] at the beginning of the tittle.

drakunovu6 09-12-2020 21:27

Re: Anti Helicopter-Blocking
 
In ReHLDS I used the next thing to make it work with Semiclip (I guess that is called) and also I think it fixes that and doesn't give player damage. The cvar "sv_force_ent_intersection" is what I'm saying it's available in ReHLDS.

nacho312 09-12-2020 21:40

Re: Anti Helicopter-Blocking
 
So, you mean that I have to enable that cvar instead of adding an anti-block plugin? And yes, I also have a semiclip plugin on my server.

drakunovu6 09-12-2020 21:52

Re: Anti Helicopter-Blocking
 
Quote:

Originally Posted by nacho312 (Post 2717611)
So, you mean that I have to enable that cvar instead of adding an anti-block plugin? And yes, I also have a semiclip plugin on my server.

So let me explain, that cvar comes with ReHLDS, if you do not have ReHLDS it doesn't work, also it is the version that is called 'bugfixed' that contains this.

nacho312 09-12-2020 22:05

Re: Anti Helicopter-Blocking
 
Thanks for the info, but, I really would prefer to use a special plugin for this, because even with semiclip and this cvar, players can still block the heli.

drakunovu6 09-12-2020 22:10

Re: Anti Helicopter-Blocking
 
Quote:

Originally Posted by nacho312 (Post 2717616)
Thanks for the info, but, I really would prefer to use a special plugin for this, because even with semiclip and this cvar, players can still block the heli.

Long time ago I have a Zombie Escape server, problem with this is that semiclip blocks the vehicle and also when you are in windows, so i used that cvar and it worked.

Mordekay 09-12-2020 23:42

Re: Anti Helicopter-Blocking
 
https://forums.alliedmods.net/showthread.php?t=55245

tarsisd2 09-13-2020 04:57

Re: Anti Helicopter-Blocking
 
Quote:

Originally Posted by Mordekay (Post 2717623)

What walkguard has to do with this request? Read the thread


I had one plugin that did what you want, I'm going to try to find it

DJEarthQuake 09-13-2020 07:32

Re: Anti Helicopter-Blocking
 
Quote:

Originally Posted by nacho312 (Post 2717608)
Hello, I'm looking for a plugin for my zombie escape server.
A plugin which gives to the player damage when he's trying to block the helicopter/car/train/etc at the end of the map, I searched, but I didn't find it yet.


EDIT: Sorry, I forgot to put [req] at the beginning of the tittle.

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_ESCAPE || cs_get_user_mapzones(cstrike_user) == CS_MAPZONE_VIP_SAFETY)         fakedamage(cstrike_user,"ESCAPE ZONE HACKING",1.0,DMG_TIMEBASED); }

I tested this plugin on as_oilrig as well as es_trinity. VIP can escape but the campers there are handled. Zombie the code how you please.

drakunovu6 09-13-2020 10:28

Re: Anti Helicopter-Blocking
 
Quote:

Originally Posted by DJEarthQuake (Post 2717645)
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.


All times are GMT -4. The time now is 05:40.

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