Raised This Month: $32 Target: $400
 8% 

Bad Camper 1.4.239


Post New Thread Reply   
 
Thread Tools Display Modes
Sele
Junior Member
Join Date: Jul 2009
Old 07-16-2020 , 06:12   Re: Bad Camper 1.4.239
Reply With Quote #731

Yes, CZ still works with it. But it is no different from the other version.
Sele is offline
DJEarthQuake
Veteran Member
Join Date: Jan 2014
Location: Astral planes
Old 07-16-2020 , 14:31   Re: Bad Camper 1.4.239
Reply With Quote #732

This should be fixed. Please any other CZ hosts out there, test this as well. All I ask, I know you have been thorough is to please validate the CVARS are in a config file that loads on each map change are not double declared. I've done that hosting countless times. So you have all-or-none CVAR control with bots/admins and not independent controls like it should be? This is not shocking as CZ has built-in bots.
__________________
DJEarthQuake is offline
Sele
Junior Member
Join Date: Jul 2009
Old 07-17-2020 , 09:01   Re: Bad Camper 1.5
Reply With Quote #733

I use a script that removes a CZ bot for every human player. The Bad_Camper plugin works for these bots. However, camping is also allowed for the admins if I switch badcamper_bots from 1 to 0. That must not be the case. The bots are allowed to camp. Otherwise they die too often through the Bad_Camper plugin. The admins are not allowed to camp. You must not have any advantage when playing over the other players. The cvars are set in the amxx.cfg file.
Sele is offline
DJEarthQuake
Veteran Member
Join Date: Jan 2014
Location: Astral planes
Old 07-18-2020 , 14:47   Re: Bad Camper 1.5
Reply With Quote #734

I've tested Bad Camper 1.5 on CZ using Amxx 1.8.2 and it is set up so admins do get checked while bots don't.
There is a CVAR, badcamper_immunity_flags, for which access levels have immunity. If that is set then this could be the reason.
__________________

Last edited by DJEarthQuake; 07-18-2020 at 15:07.
DJEarthQuake is offline
Sele
Junior Member
Join Date: Jul 2009
Old 07-19-2020 , 03:36   Re: Bad Camper 1.4.239
Reply With Quote #735

I have these settings:

badcamper_bots 0
badcamper_admins 1
badcamper_punish 10
badcamper_sound 1
badcamper_money 10
badcamper_limit 10
badcamper_display 1
badcamper_show_spec 1
badcamper_check_all 1
badcamper_immunity_flags
badcamper_start 4
badcamper_damage_reset 3
badcamper_damage_restart 4
badcamper_health 20
badcamper_allow 0
badcamper_min_players 0
badcamper_announce 0
Sele is offline
DJEarthQuake
Veteran Member
Join Date: Jan 2014
Location: Astral planes
Old 07-19-2020 , 08:47   Re: Bad Camper 1.4.239
Reply With Quote #736

Looks fine. Possibly try:
badcamper_immunity_flags ""

Also test the new punishments I ported in from my other works! 228 lights them up, makes a spike on their head to the ceiling and they play the flute in random tones. It's quite amusing actually to heckle the campers. Do not change it on the fly without the commander model for the hologram! It can only catch the file missing on map loads if changed in config file and pause plugin.

badcamper_punish 228

The other thing I can say is I did a clean install and initially just ran this plugin. No other 3rd party plugins. I use server.cfg over amxx.cfg.

servercfgfile
"servercfgfile" is "server.cfg"

mapchangecfgfile
"mapchangecfgfile" is "server.cfg"
__________________
DJEarthQuake is offline
Sele
Junior Member
Join Date: Jul 2009
Old 07-20-2020 , 03:35   Re: Bad Camper 1.5
Reply With Quote #737

I have set badcamper_immunity_flags "" No change.
I tested it on a local server. Switch off all other 3rd party plugins. badcamper_admins 1. Again the same result. As soon as I set badcamper_bots 0, camping for admins is also allowed. Also with the version of "Bad Camper Project.zip". Always the same result.
Sele is offline
DJEarthQuake
Veteran Member
Join Date: Jan 2014
Location: Astral planes
Old 07-20-2020 , 11:52   Re: Bad Camper 1.4.239
Reply With Quote #738

3 mods and 3 servers including CZ with Amxx 1.82. I've never had this happen and nobody else has reported this happening. There isn't anything I can do for you at this point. I explained how mine was set-up with server.cfg. That is possibly the only difference. Do you validate the settings are in effect on the game instead of just look at the config file? That is the only other piece of advice I can give. Have you tested this on other punishment settings?
__________________
DJEarthQuake is offline
Al3xandru27
Member
Join Date: Oct 2019
Old 07-26-2020 , 04:21   Re: Bad Camper 1.4.239
Reply With Quote #739

Can't I just say that those from ct can't camp? For the furien server.
Al3xandru27 is offline
DJEarthQuake
Veteran Member
Join Date: Jan 2014
Location: Astral planes
Old 08-02-2020 , 13:47   Re: Bad Camper 1.4.239
Reply With Quote #740

Quote:
Originally Posted by Al3xandru27 View Post
Can't I just say that those from ct can't camp? For the furien server.
While I am still undecided and there is little demand here is a script that can add an otherwise powerless admin flag so the Terrorist's can camp and the CT's cannot.

Code:
#include <amxmodx> #include <amxmisc> public plugin_init() {     register_plugin("AutoTeam UserFlag Control", "A", "SPINX"); //cmd_user_flags from VEN     register_event( "TeamInfo", "event_team_info", "a" );     register_concmd("user_flags", "cmd_user_flags", ADMIN_RCON, "<name or #userid> [flags] [+|-] - gets/sets/adds/subtracts user flags") } public cmd_user_flags(caller, level, cid) {     if (!cmd_access(caller, level, cid, 2))         return PLUGIN_HANDLED     static arg[32], id     read_argv(1, arg, sizeof arg - 1)     id = cmd_target(caller, arg, 0)     if (!id)         return PLUGIN_HANDLED     if (read_argc() == 2) {         get_flags(get_user_flags(id), arg, sizeof arg - 1)         console_print(caller, "User's flags:   %s", arg)         return PLUGIN_HANDLED     }     static flags     read_argv(2, arg, sizeof arg - 1)     flags = read_flags(arg)     read_argv(3, arg, 1)     switch (arg[0]) {         case '+': set_user_flags(id, flags)         case '-': remove_user_flags(id, flags)         default : {             remove_user_flags(id, -1)             set_user_flags(id, flags)         }     }     return PLUGIN_HANDLED } //By request for the Furien mods for badcamper for selective team camping by using otherwise powerless admin flag t. Pick whatever. public event_team_info() {     new id = read_data( 1 );     if(is_user_bot(id))return;     new team[12];     new Player = get_user_userid(id)     read_data( 2, team, sizeof team - 1 );     switch( team[0] )     {         case 'C'server_cmd("user_flags #%d ^"t^" ^"- ^" ", Player)&&server_cmd("user_flags #%d ^"z^" ^"+ ^" ", Player); // CT         case 'T'server_cmd("user_flags #%d ^"t^" ^"+ ^" ", Player)&&server_cmd("user_flags #%d ^"z^" ^"- ^" ", Player); // TERRORIST         case 'S'return; // SPEC     } }
__________________

Last edited by DJEarthQuake; 08-02-2020 at 13:51.
DJEarthQuake is offline
Reply


Thread Tools
Display Modes

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 11:49.


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