You are here: Big Brother Bot ForumAdd-OnsPluginsReleases!Weapon Control Plugin - Antinoob v1.0.7
Pages: 1 ... 12 13 [14] 15   Go Down
  Print  
Author Topic: Weapon Control Plugin - Antinoob v1.0.7  (Read 15688 times)
Newbie
*
Posts: 7
Offline Offline
« Reply #195 on: October 15, 2009, 09:21:29 AM »

I'd like to know how to stop Last Stand, Marty, P90 and Desert Eagle
Logged
Dev. Team
Hero Member
*****
Posts: 1039
Offline Offline
Don't contact me on Xfire! I will just reject you!
« Reply #196 on: October 15, 2009, 09:28:03 AM »

Configure the plugin as shown in the first page of the thread.
Logged

Newbie
*
Posts: 5
Offline Offline
« Reply #197 on: October 19, 2009, 11:12:23 AM »

Does anyone know how to get the name of the weapon in the rule that is showed if someone uses an restricted weapon?

Like: $weapon is forbidden.

Thanks
Logged
Newbie
*
Posts: 5
Offline Offline
« Reply #198 on: October 19, 2009, 04:20:49 PM »

ok heres what i want do to; warn 2 times and ban on 3 for the following, desert eagles, p90's, and pistols used with any other weapon besides a sniper.

Here's where I'm stuck; I dont know the weapon codes for them eg. p90_mp? so on and so forth
Logged
Dev. Team
Hero Member
*****
Posts: 1039
Offline Offline
Don't contact me on Xfire! I will just reject you!
« Reply #199 on: October 19, 2009, 10:51:02 PM »

I'm not sure what you're trying to do. Are you restricting people to sniper classes?
Logged

Newbie
*
Posts: 5
Offline Offline
« Reply #200 on: October 20, 2009, 07:15:46 AM »

No, What I would like it to do is only allow the sniper to use pistol. anyone else i would like it to warn if they use the pistol. As well as keeping anyone from using martyr or last stand and desert eagles and p90's. I know how to edit the config and whatnot but I don't know the codes for the weapons. Like if the weapon is the desert eagle is it deagle_mp? It would be very cool if there was a list of these codes.
Logged
Newbie
*
Posts: 6
Offline Offline
« Reply #201 on: November 03, 2009, 07:24:39 AM »

In an attempt to assist those having difficulty in setting up the antinoob plugin, Here is how I have it running and it's working well.

As you can see we have a 20 sec rule for No 203's, C4, frags, RPG's or Airstrikes and a Permanent "Banned Weapon" warning for Martyrdom / Laststand.  
Rule6 = 20 sec rule
Rule3 = No Martyrdom / Laststand

plugin_antinoob.xml
Copied into %Drive Letter%\b3\extplugins\
<!-- Modified to meet our needs and rules. -->

Code:
<configuration plugin="antinoob">
    <settings name="settings">
        <set name="warn_duration">20</set>
        <set name="warning_rule">rule6</set>
        <set name="banned_warning_rule">rule3</set>
        <set name="unlock_message">^3 %s seconds passed - ^3all weapons unlocked!!!</set>
        <set name="info_message">^3 No 203's, C4, frags, RPGs or Airstrikes ^5for %s seconds of the round!!!</set>
        <set name="bannedonly_info_message">^3 Martyrdom and LastStand are not allowed on this server!!!</set>
    </settings>
    <maps>
        <!-- <map name="mp_citystreets">10</map> -->
    </maps>  
  
    <weapon_timed_warn>
<!-- Tubes --> <!-- Working -->
        <weapon mod="MOD_GRENADE_SPLASH">gl_ak47_mp</weapon> <!-- Working -->
        <weapon mod="MOD_GRENADE_SPLASH">gl_g3_mp</weapon> <!-- Working -->
        <weapon mod="MOD_GRENADE_SPLASH">gl_g36c_mp</weapon> <!-- Working -->
        <weapon mod="MOD_GRENADE_SPLASH">gl_m4_mp</weapon> <!-- Working -->
        <weapon mod="MOD_GRENADE_SPLASH">gl_m14_mp</weapon> <!-- Working -->
        <weapon mod="MOD_GRENADE_SPLASH">gl_m16_mp</weapon> <!-- Working -->
        <weapon mod="MOD_GRENADE_SPLASH">gl_mp</weapon> <!-- Working -->
        <!-- Nades -->  
<weapon mod="MOD_GRENADE_SPLASH">frag_grenade_mp</weapon> <!-- Working -->
<weapon mod="MOD_GRENADE_SPLASH"></weapon>
<!-- Misc Explosives -->
<weapon mod="">destructible_car</weapon> <!-- Working -->
<weapon mod="">explodable_barrel</weapon> <!-- Working -->
        <weapon mod="">c4_mp</weapon> <!-- Working -->
<weapon mod="">rpg_mp</weapon> <!-- Working -->
        <!-- Airstike -->
        <weapon mod="MOD_PROJECTILE_SPLASH">artillery_mp</weapon> <!-- Working -->
        <!-- Heli -->      
        <!-- <weapon mod="0">helicopter_mp</weapon> -->  
</weapon_timed_warn>
        <weapon_timed_kick>
<!-- Empty -->
        </weapon_timed_kick>

        <weapon_banned_kick>
<!-- Empty -->
        </weapon_banned_kick>

        <weapon_banned_warn>
<!-- Martyr -->
<weapon mod="">frag_grenade_short_mp</weapon> <!-- Untested but I don't believe this is working-->
        </weapon_banned_warn>

</configuration>

antinoob.py
Copied into %Drive Letter%\b3\
<!-- No changes made to this file and it is the one contained in Anubis main post for v1.0.7 -->

Code:
# b3/plugins/antinoob.py
#
# Gamers 4 Gamers (http://g4g.pl)
# Copyright (C) 2008 Anubis
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.

# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
#
# $Id: antinoob.py 89 2008-06-06 22:38:34Z Anubis $
#
# CHANGELOG
#    06/06/2008 - 1.0.0 - Anubis
#    -- first version based on Antinoob plugin by MiLcH
#    07/06/2008 - 1.0.1 - Anubis
#    -- fixed airstrike issues
#    23/12/2008 - 1.0.2 - Anubis
#    -- Damage = warn
#    23/12/2008 - 1.0.3 - Anubis
#    -- New config - weapons/maps
#    12/02/2009 - 1.0.4 - Anubis
#    -- New config - MOD settings
#    16/02/2009 - 1.0.5 - Anubis
#    -- New config - MOD settings as restriction
#    26/03/2009 - 1.0.6 - Anubis
#    -- New config , new wepons handling
#    11/05/2009 - 1.0.7 - Anubis
#    -- Errors fixing

b3.xml
<!-- Modified the <plugins> </plugins> section and added it to the last line and "NEXT" priority number available. -->
Code:
   <plugin name="antinoob" priority="12" config="@b3/extplugins/conf/plugin_antinoob.xml"/>

That's it for configuration...  I think the confusion I'm seeing in a lot of the posts is with regards to Anubis's main post containing a different version of the 'plugin_antinoob.xml' file.  Please correct me if I'm wrong in this assumption but the  'plugin_antinoob.xml' contained in the 1.0.7 zip doesn't contain anything with <weapon perm="0"> </weapon>.

I will say that this version of antinoob is working the best I have ever seen it work.  Love the ability to not flood the screen with everyone's warnings... Love it!

As always excellent work Anubis.
« Last Edit: November 04, 2009, 01:12:31 PM by KulWun » Logged
Newbie
*
Posts: 1
Offline Offline
« Reply #202 on: November 09, 2009, 02:29:56 PM »

that config also worked for me... didnt have to change py file either.
Logged
Jr. Member
**
Posts: 14
Offline Offline
« Reply #203 on: November 20, 2009, 03:19:52 PM »

I tried this with CoD5 WaW and i'm having some problems.

I want to ban the use of betties, satchel charges, rifle grenades and all other weapons other than rifles / sniper rifles.

Basically creating a bolts only server.

The plugin appears to be running and looks like it attempts to warn people at least in the b3.log, but does not give a visual text warning nor does it kick for the infraction.

Any help would be greatly appreciated.

I set up antinoob version 1.0.7 with this config:
Code:
<configuration plugin="antinoob">
    <settings name="settings">
        <set name="warn_duration">1</set>
        <set name="warning_rule">rule6</set>
        <set name="banned_warning_rule">rule3</set>
        <set name="unlock_message">^3Follow the rules or face the wrath of B3!!!</set>
        <set name="info_message">^3 BOLTS ONLY!!!</set>
        <set name="bannedonly_info_message">^3 Rifles Only... No Betties, Satchel Charges, and Rifle Grenades are not allowed on this server!!!</set>
    </settings>
    <maps>
<map name="mp_airfield">10</map>
<map name="mp_asylum">10</map>
<map name="mp_kwai">10</map>
<map name="mp_drum">10</map>
<map name="mp_bgate">10</map>
<map name="mp_castle">10</map>
<map name="mp_shrine">10</map>
<map name="mp_stalingrad">10</map>
<map name="mp_courtyard">10</map>
<map name="mp_dome">10</map>
<map name="mp_downfall">10</map>
<map name="mp_hangar">10</map>
<map name="mp_kneedeep">10</map>
<map name="mp_makin">10</map>
<map name="mp_makin_day">10</map>
<map name="mp_nachtfeuer">10</map>
<map name="mp_outskirts">10</map>
<map name="mp_vodka">10</map>
<map name="mp_roundhouse">10</map>
<map name="mp_seelow">10</map>
<map name="mp_docks">10</map>
<map name="mp_subway">10</map>
<map name="mp_suburban">10</map>

        <!-- <map name="mp_citystreets">10</map> -->
    </maps>  
  
    <weapon_timed_warn>

<!-- Tubes --> <!-- Working -->
        <!-- <weapon mod="MOD_GRENADE_SPLASH">gl_ak47_mp</weapon>  -->
        <!-- <weapon mod="MOD_GRENADE_SPLASH">gl_g3_mp</weapon> -->
        <!--  <weapon mod="MOD_GRENADE_SPLASH">gl_g36c_mp</weapon> -->
        <!-- <weapon mod="MOD_GRENADE_SPLASH">gl_m4_mp</weapon> -->
        <!-- <weapon mod="MOD_GRENADE_SPLASH">gl_m14_mp</weapon> -->
        <!-- <weapon mod="MOD_GRENADE_SPLASH">gl_m16_mp</weapon> -->
        <!-- <weapon mod="MOD_GRENADE_SPLASH">gl_mp</weapon> -->
        <!-- Nades -->  
<!-- <weapon mod="MOD_GRENADE_SPLASH">frag_grenade_mp</weapon> -->
<!-- <weapon mod="MOD_GRENADE_SPLASH"></weapon> -->
<!-- Misc Explosives -->
<!-- <weapon mod="">destructible_car</weapon> -->
<!-- <weapon mod="">explodable_barrel</weapon> -->
        <!-- <weapon mod="">c4_mp</weapon> -->
<!-- <weapon mod="">rpg_mp</weapon> -->
        <!-- Airstike -->
        <!-- <weapon mod="MOD_PROJECTILE_SPLASH">artillery_mp</weapon> -->
        <!-- Heli -->      
        <!-- <weapon mod="0">helicopter_mp</weapon> -->  
</weapon_timed_warn>
        <weapon_timed_kick>
<!-- Empty -->
        </weapon_timed_kick>

        <weapon_banned_kick>
 <!-- <weapon mod="">30cal_bipod_crouch_mp</weapon>
 <weapon mod="">30cal_bipod_mp</weapon>
 <weapon mod="">30cal_bipod_prone_mp</weapon>
 <weapon mod="">30cal_bipod_stand_mp</weapon>
 <weapon mod="">30cal_mp</weapon>
 <weapon mod="">357magnum_mp</weapon>
 <weapon mod="">bar_bipod_crouch_mp</weapon>
 <weapon mod="">bar_bipod_mp</weapon>
 <weapon mod="">bar_bipod_prone_mp</weapon>
 <weapon mod="">bar_bipod_stand_mp</weapon>
 <weapon mod="">bar_mp</weapon>
 <weapon mod="">bazooka_mp</weapon>
 <weapon mod="">colt_mp</weapon>
 <weapon mod="">doublebarreledshotgun_grip_mp</weapon>
 <weapon mod="">doublebarreledshotgun_mp</weapon>
 <weapon mod="">doublebarreledshotgun_sawoff_ mp</weapon>
 <weapon mod="">dp28_bipod_crouch_mp</weapon>
 <weapon mod="">dp28_bipod_mp</weapon>
 <weapon mod="">dp28_bipod_prone_mp</weapon>
 <weapon mod="">dp28_bipod_stand_mp</weapon>
 <weapon mod="">dp28_mp</weapon>
 <weapon mod="">fg42_bipod_crouch_mp</weapon>
 <weapon mod="">fg42_bipod_mp</weapon>
 <weapon mod="">fg42_bipod_prone_mp</weapon>
 <weapon mod="">fg42_bipod_stand_mp</weapon>
 <weapon mod="">fg42_mp</weapon>
 <weapon mod="">fg42_telescopic_mp</weapon>
 <weapon mod="">flame_firstperson_mp</weapon>
 <weapon mod="">flame_sherman_mp_FLM</weapon>
 <weapon mod="">flame_thirdperson_mp</weapon>
 <weapon mod="">frag_grenade_mp</weapon>
 <weapon mod="">frag_grenade_short_mp</weapon>
 <weapon mod="">gewehr43_aperture_mp</weapon>
 <weapon mod="">gewehr43_gl_mp</weapon>
 <weapon mod="">gewehr43_mp</weapon>
 <weapon mod="">gewehr43_silenced_mp</weapon>
 <weapon mod="">gewehr43_telescopic_mp</weapon>
 <weapon mod="">gl_gewehr43_mp</weapon>
 <weapon mod="">gl_kar98k_mp</weapon>
 <weapon mod="">gl_m1garand_mp</weapon>
 <weapon mod="">gl_mosinrifle_mp</weapon>
 <weapon mod="">gl_springfield_mp</weapon>
 <weapon mod="">gl_type99rifle_mp</weapon>
 <weapon mod="">kamikaze_gunner_mp</weapon>
 <weapon mod="">kamikaze_mp</weapon>
 <weapon mod="">kar98k_gl_mp</weapon>
 <weapon mod="">m1carbine_aperture_mp</weapon>
 <weapon mod="">m1carbine_bayonet_mp</weapon>
 <weapon mod="">m1carbine_bigammo_mp</weapon>
 <weapon mod="">m1carbine_flash_mp</weapon>
 <weapon mod="">m1carbine_mp</weapon>
 <weapon mod="">m1garand_bayonet_mp</weapon>
 <weapon mod="">m1garand_flash_mp</weapon>
 <weapon mod="">m1garand_gl_mp</weapon>
 <weapon mod="">m1garand_mp</weapon>
 <weapon mod="">m1garand_scoped_mp</weapon>
 <weapon mod="">m2_flamethrower_mp</weapon>
 <weapon mod="">m8_white_smoke_mp</weapon>
 <weapon mod="">mg42_bipod_crouch_mp</weapon>
 <weapon mod="">mg42_bipod_mp</weapon>
 <weapon mod="">mg42_bipod_prone_mp</weapon>
 <weapon mod="">mg42_bipod_stand_mp</weapon>
 <weapon mod="">mg42_mp</weapon>
 <weapon mod="">mine_bouncing_betty_mp</weapon>
 <weapon mod="">mosinrifle_gl_mp</weapon>
 <weapon mod="">mp40_aperture_mp</weapon>
 <weapon mod="">mp40_bigammo_mp</weapon>
 <weapon mod="">mp40_mp</weapon>
 <weapon mod="">mp40_silenced_mp</weapon>
 <weapon mod="">nambu_mp</weapon>
 <weapon mod="">panzer4_gunner_front_mp</weapon>
 <weapon mod="">panzer4_gunner_mp</weapon>
 <weapon mod="">panzer4_mp_explosion_mp</weapon>
 <weapon mod="">panzer4_turret_mp</weapon>
 <weapon mod="">panzershrek_mp</weapon>
 <weapon mod="">ppsh_aperture_mp</weapon>
 <weapon mod="">ppsh_bigammo_mp</weapon>
 <weapon mod="">ppsh_mp</weapon>
 <weapon mod="">ptrs41_mp</weapon>
 <weapon mod="">satchel_charge_mp</weapon>
 <weapon mod="">shotgun_bayonet_mp</weapon>
 <weapon mod="">shotgun_grip_mp</weapon>
 <weapon mod="">shotgun_mp</weapon>
 <weapon mod="">springfield_gl_mp</weapon>
 <weapon mod="">stg44_aperture_mp</weapon>
 <weapon mod="">stg44_flash_mp</weapon>
 <weapon mod="">stg44_mp</weapon>
 <weapon mod="">stg44_telescopic_mp</weapon>
 <weapon mod="">svt40_aperture_mp</weapon>
 <weapon mod="">svt40_flash_mp</weapon>
 <weapon mod="">svt40_mp</weapon>
 <weapon mod="">svt40_telescopic_mp</weapon>
 <weapon mod="">syrette_mp</weapon>
 <weapon mod="">t34_gunner_front_mp</weapon>
 <weapon mod="">t34_gunner_mp</weapon>
 <weapon mod="">t34_mp_explosion_mp</weapon>
 <weapon mod="">t34_turret_mp</weapon>
 <weapon mod="">thompson_aperture_mp</weapon>
 <weapon mod="">thompson_bigammo_mp</weapon>
 <weapon mod="">thompson_mp</weapon>
 <weapon mod="">thompson_silenced_mp</weapon>
 <weapon mod="">tokarev_mp</weapon>
 <weapon mod="">type100smg_aperture_mp</weapon>
 <weapon mod="">type100smg_bigammo_mp</weapon>
 <weapon mod="">type100smg_mp</weapon>
 <weapon mod="">type100smg_silenced_mp</weapon>
 <weapon mod="">type99lmg_bayonet_mp</weapon>
 <weapon mod="">type99lmg_bipod_mpv
 <weapon mod="">type99lmg_mp</weapon>
 <weapon mod="">type99rifle_bayonet_mp</weapon>
 <weapon mod="">type99rifle_gl_mp</weapon>
 <weapon mod="">type99rifle_mp</weapon>
 <weapon mod="">type99rifle_scoped_mp</weapon>
 <weapon mod="">type99_lmg_bipod_crouch_mp</weapon>
 <weapon mod="">type99_lmg_bipod_prone_mp</weapon>
 <weapon mod="">type99_lmg_bipod_stand_mp</weapon>
 <weapon mod="">walther_mp</weapon> -->
<!-- Empty -->
        </weapon_banned_kick>

        <weapon_banned_warn>
 <weapon mod="">30cal_bipod_crouch_mp</weapon>
 <weapon mod="">30cal_bipod_mp</weapon>
 <weapon mod="">30cal_bipod_prone_mp</weapon>
 <weapon mod="">30cal_bipod_stand_mp</weapon>
 <weapon mod="">30cal_mp</weapon>
 <weapon mod="">357magnum_mp</weapon>
 <weapon mod="">bar_bipod_crouch_mp</weapon>
 <weapon mod="">bar_bipod_mp</weapon>
 <weapon mod="">bar_bipod_prone_mp</weapon>
 <weapon mod="">bar_bipod_stand_mp</weapon>
 <weapon mod="">bar_mp</weapon>
 <weapon mod="">bazooka_mp</weapon>
 <weapon mod="">colt_mp</weapon>
 <weapon mod="">doublebarreledshotgun_grip_mp</weapon>
 <weapon mod="">doublebarreledshotgun_mp</weapon>
 <weapon mod="">doublebarreledshotgun_sawoff_ mp</weapon>
 <weapon mod="">dp28_bipod_crouch_mp</weapon>
 <weapon mod="">dp28_bipod_mp</weapon>
 <weapon mod="">dp28_bipod_prone_mp</weapon>
 <weapon mod="">dp28_bipod_stand_mp</weapon>
 <weapon mod="">dp28_mp</weapon>
 <weapon mod="">fg42_bipod_crouch_mp</weapon>
 <weapon mod="">fg42_bipod_mp</weapon>
 <weapon mod="">fg42_bipod_prone_mp</weapon>
 <weapon mod="">fg42_bipod_stand_mp</weapon>
 <weapon mod="">fg42_mp</weapon>
 <weapon mod="">fg42_telescopic_mp</weapon>
 <weapon mod="">flame_firstperson_mp</weapon>
 <weapon mod="">flame_sherman_mp_FLM</weapon>
 <weapon mod="">flame_thirdperson_mp</weapon>
 <weapon mod="">frag_grenade_mp</weapon>
 <weapon mod="">frag_grenade_short_mp</weapon>
 <weapon mod="">gewehr43_aperture_mp</weapon>
 <weapon mod="">gewehr43_gl_mp</weapon>
 <weapon mod="">gewehr43_mp</weapon>
 <weapon mod="">gewehr43_silenced_mp</weapon>
 <weapon mod="">gewehr43_telescopic_mp</weapon>
 <weapon mod="">gl_gewehr43_mp</weapon>
 <weapon mod="">gl_kar98k_mp</weapon>
 <weapon mod="">gl_m1garand_mp</weapon>
 <weapon mod="">gl_mosinrifle_mp</weapon>
 <weapon mod="">gl_springfield_mp</weapon>
 <weapon mod="">gl_type99rifle_mp</weapon>
 <weapon mod="">kamikaze_gunner_mp</weapon>
 <weapon mod="">kamikaze_mp</weapon>
 <weapon mod="">kar98k_gl_mp</weapon>
 <weapon mod="">m1carbine_aperture_mp</weapon>
 <weapon mod="">m1carbine_bayonet_mp</weapon>
 <weapon mod="">m1carbine_bigammo_mp</weapon>
 <weapon mod="">m1carbine_flash_mp</weapon>
 <weapon mod="">m1carbine_mp</weapon>
 <weapon mod="">m1garand_bayonet_mp</weapon>
 <weapon mod="">m1garand_flash_mp</weapon>
 <weapon mod="">m1garand_gl_mp</weapon>
 <weapon mod="">m1garand_mp</weapon>
 <weapon mod="">m1garand_scoped_mp</weapon>
 <weapon mod="">m2_flamethrower_mp</weapon>
 <weapon mod="">m8_white_smoke_mp</weapon>
 <weapon mod="">mg42_bipod_crouch_mp</weapon>
 <weapon mod="">mg42_bipod_mp</weapon>
 <weapon mod="">mg42_bipod_prone_mp</weapon>
 <weapon mod="">mg42_bipod_stand_mp</weapon>
 <weapon mod="">mg42_mp</weapon>
 <weapon mod="">mine_bouncing_betty_mp</weapon>
 <weapon mod="">mosinrifle_gl_mp</weapon>
 <weapon mod="">mp40_aperture_mp</weapon>
 <weapon mod="">mp40_bigammo_mp</weapon>
 <weapon mod="">mp40_mp</weapon>
 <weapon mod="">mp40_silenced_mp</weapon>
 <weapon mod="">nambu_mp</weapon>
 <weapon mod="">panzer4_gunner_front_mp</weapon>
 <weapon mod="">panzer4_gunner_mp</weapon>
 <weapon mod="">panzer4_mp_explosion_mp</weapon>
 <weapon mod="">panzer4_turret_mp</weapon>
 <weapon mod="">panzershrek_mp</weapon>
 <weapon mod="">ppsh_aperture_mp</weapon>
 <weapon mod="">ppsh_bigammo_mp</weapon>
 <weapon mod="">ppsh_mp</weapon>
 <weapon mod="">ptrs41_mp</weapon>
 <weapon mod="">satchel_charge_mp</weapon>
 <weapon mod="">shotgun_bayonet_mp</weapon>
 <weapon mod="">shotgun_grip_mp</weapon>
 <weapon mod="">shotgun_mp</weapon>
 <weapon mod="">springfield_gl_mp</weapon>
 <weapon mod="">stg44_aperture_mp</weapon>
 <weapon mod="">stg44_flash_mp</weapon>
 <weapon mod="">stg44_mp</weapon>
 <weapon mod="">stg44_telescopic_mp</weapon>
 <weapon mod="">svt40_aperture_mp</weapon>
 <weapon mod="">svt40_flash_mp</weapon>
 <weapon mod="">svt40_mp</weapon>
 <weapon mod="">svt40_telescopic_mp</weapon>
 <weapon mod="">syrette_mp</weapon>
 <weapon mod="">t34_gunner_front_mp</weapon>
 <weapon mod="">t34_gunner_mp</weapon>
 <weapon mod="">t34_mp_explosion_mp</weapon>
 <weapon mod="">t34_turret_mp</weapon>
 <weapon mod="">thompson_aperture_mp</weapon>
 <weapon mod="">thompson_bigammo_mp</weapon>
 <weapon mod="">thompson_mp</weapon>
 <weapon mod="">thompson_silenced_mp</weapon>
 <weapon mod="">tokarev_mp</weapon>
 <weapon mod="">type100smg_aperture_mp</weapon>
 <weapon mod="">type100smg_bigammo_mp</weapon>
 <weapon mod="">type100smg_mp</weapon>
 <weapon mod="">type100smg_silenced_mp</weapon>
 <weapon mod="">type99lmg_bayonet_mp</weapon>
 <weapon mod="">type99lmg_bipod_mpv
 <weapon mod="">type99lmg_mp</weapon>
 <weapon mod="">type99rifle_bayonet_mp</weapon>
 <weapon mod="">type99rifle_gl_mp</weapon>
 <weapon mod="">type99rifle_mp</weapon>
 <weapon mod="">type99rifle_scoped_mp</weapon>
 <weapon mod="">type99_lmg_bipod_crouch_mp</weapon>
 <weapon mod="">type99_lmg_bipod_prone_mp</weapon>
 <weapon mod="">type99_lmg_bipod_stand_mp</weapon>
 <weapon mod="">walther_mp</weapon>
<!-- Martyr -->
<!-- <weapon mod="">frag_grenade_short_mp</weapon> -->
        </weapon_banned_warn>

</configuration>
Logged
Jr. Member
**
Posts: 14
Offline Offline
« Reply #204 on: November 20, 2009, 03:24:38 PM »

here is my b3.log excert that corresponds to my problem.
Code:
091119 22:49:26 BOT     Loading Plugin #11 antinoob [/home/voodoovoodoo/conf/b3/bolts/extplugins/conf/plugin_antinoob.xml]
091119 22:49:26 BOT     AntinoobPlugin: Loading config /home/voodoovoodoo/conf/b3/bolts/extplugins/conf/plugin_antinoob.xml for AntinoobPlugin
091119 22:49:26 DEBUG AntinoobPlugin: Loading Configuration Started
091119 22:49:26 DEBUG AntinoobPlugin: _warndurationdefault: 1
091119 22:49:26 DEBUG AntinoobPlugin: Banned Warn - Weapon loaded: >30cal_bipod_crouch_mp< Mod:><

[color=red][font=Verdana]loads all the weapons like above and below...(had to shorten the log... lol[/font][/color]

091119 22:49:26 DEBUG AntinoobPlugin: Banned Warn - Weapon loaded: >walther_mp< Mod:><
091119 22:49:26 DEBUG AntinoobPlugin: Banned Warn - Weapon loaded: >frag_grenade_short_mp< Mod:><
091119 22:49:26 DEBUG AntinoobPlugin: Map parsed: mp_airfield duration: 10
091119 22:49:26 DEBUG AntinoobPlugin: Map parsed: mp_asylum duration: 10
091119 22:49:26 DEBUG AntinoobPlugin: Map parsed: mp_kwai duration: 10
091119 22:49:26 DEBUG AntinoobPlugin: Map parsed: mp_drum duration: 10
091119 22:49:26 DEBUG AntinoobPlugin: Map parsed: mp_bgate duration: 10
091119 22:49:26 DEBUG AntinoobPlugin: Map parsed: mp_castle duration: 10
091119 22:49:26 DEBUG AntinoobPlugin: Map parsed: mp_shrine duration: 10
091119 22:49:26 DEBUG AntinoobPlugin: Map parsed: mp_stalingrad duration: 10
091119 22:49:26 DEBUG AntinoobPlugin: Map parsed: mp_courtyard duration: 10
091119 22:49:26 DEBUG AntinoobPlugin: Map parsed: mp_dome duration: 10
091119 22:49:26 DEBUG AntinoobPlugin: Map parsed: mp_downfall duration: 10
091119 22:49:26 DEBUG AntinoobPlugin: Map parsed: mp_hangar duration: 10
091119 22:49:26 DEBUG AntinoobPlugin: Map parsed: mp_kneedeep duration: 10
091119 22:49:26 DEBUG AntinoobPlugin: Map parsed: mp_makin duration: 10
091119 22:49:26 DEBUG AntinoobPlugin: Map parsed: mp_makin_day duration: 10
091119 22:49:26 DEBUG AntinoobPlugin: Map parsed: mp_nachtfeuer duration: 10
091119 22:49:26 DEBUG AntinoobPlugin: Map parsed: mp_outskirts duration: 10
091119 22:49:26 DEBUG AntinoobPlugin: Map parsed: mp_vodka duration: 10
091119 22:49:26 DEBUG AntinoobPlugin: Map parsed: mp_roundhouse duration: 10
091119 22:49:26 DEBUG AntinoobPlugin: Map parsed: mp_seelow duration: 10
091119 22:49:26 DEBUG AntinoobPlugin: Map parsed: mp_docks duration: 10
091119 22:49:26 DEBUG AntinoobPlugin: Map parsed: mp_subway duration: 10
091119 22:49:26 DEBUG AntinoobPlugin: Map parsed: mp_suburban duration: 10
091119 22:49:26 DEBUG AntinoobPlugin: Loading Configuration Finished
091119 22:49:26 DEBUG Register Event: Stop Process: AntinoobPlugin
091119 22:49:26 DEBUG Register Event: Program Exit: AntinoobPlugin
091119 22:49:26 BOT     Plugin antinoob (1.0.7 - Anubis) loaded
091119 22:49:26 BOT     Loading Plugin ftpytail
091119 22:49:26 BOT     FtpytailPlugin: No config file found for FtpytailPlugin. (was not required either)
091119 22:49:26 DEBUG Register Event: Stop Process: FtpytailPlugin
091119 22:49:26 DEBUG Register Event: Program Exit: FtpytailPlugin
091119 22:49:26 BOT     Plugin ftpytail (1.1 - Bakes) loaded
091119 22:49:26 VERBOSE 0 cid changed from None to -1
091119 22:49:26 DEBUG Client Connected: [-1] World - WORLD ({})
091119 22:49:26 DEBUG Storage: getClient <b3.clients.Client object at 0x8c2b10c>
091119 22:49:26 BOT     Client found in storage 1, welcome back World
091119 22:49:26 DEBUG Storage: setClient <b3.clients.Client object at 0x8c2b10c>
091119 22:49:26 DEBUG Storage: setClient data {'time_add': 1258313801, 'time_edit': 1258688966, 'name': 'World', 'group_bits': 0, 'ip': '', 'auto_login': 1, 'greeting': '', 'pbid': 'WORLD', 'connections': 29, 'mask_level': 0, 'guid': 'WORLD', 'id': 1}
091119 22:49:26 DEBUG Client Authorized: [-1] World - WORLD
091119 22:49:26 VERBOSE RCON sending (208.167.251.29:28960) say ^0(^2b3^0)^7: ^8www.BigBrotherBot.com ^0(^8b3^0) ^9v1.2.1 [posix] ^9(^3Daniel^9)^3 ^2[ONLINE]
091119 22:49:26 BOT     Starting Plugin spamcontrol
091119 22:49:26 DEBUG Register Event: Say: SpamcontrolPlugin
091119 22:49:26 DEBUG Register Event: Team Say: SpamcontrolPlugin
091119 22:49:26 DEBUG AdminPlugin: Command "spamins (None)" registered with cmd_spamins for level (20, 100)
091119 22:49:26 BOT     Starting Plugin admin
091119 22:49:26 DEBUG Register Event: Say: AdminPlugin
091119 22:49:26 DEBUG Register Event: Private Message: AdminPlugin
091119 22:49:26 DEBUG AdminPlugin: Command "status (None)" registered with cmd_status for level (20, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "ci (None)" registered with cmd_ci for level (20, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "rules (r)" registered with cmd_rules for level (0, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "warnclear (wc)" registered with cmd_warnclear for level (80, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "leveltest (lt)" registered with cmd_leveltest for level (20, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "warn (w)" registered with cmd_warn for level (20, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "list (None)" registered with cmd_list for level (20, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "warns (None)" registered with cmd_warns for level (20, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "warntest (wt)" registered with cmd_warntest for level (20, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "warninfo (wi)" registered with cmd_warninfo for level (20, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "greeting (None)" registered with cmd_greeting for level (9, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "nextmap (None)" registered with cmd_nextmap for level (2, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "cmdlevel (None)" registered with cmd_cmdlevel for level (90, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "lookup (l)" registered with cmd_lookup for level (80, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "b3 (None)" registered with cmd_b3 for level (9, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "seen (None)" registered with cmd_seen for level (2, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "find (None)" registered with cmd_find for level (20, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "pause (None)" registered with cmd_pause for level (90, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "kickall (kall)" registered with cmd_kickall for level (80, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "makereg (mr)" registered with cmd_makereg for level (80, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "admintest (None)" registered with cmd_admintest for level (40, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "regtest (None)" registered with cmd_regtest for level (1, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "rebuild (None)" registered with cmd_rebuild for level (90, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "maps (None)" registered with cmd_maps for level (2, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "ban (b)" registered with cmd_ban for level (60, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "ungroup (None)" registered with cmd_ungroup for level (90, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "delgroup (None)" registered with cmd_delgroup for level (90, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "banall (ball)" registered with cmd_banall for level (80, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "maprotate (None)" registered with cmd_maprotate for level (80, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "putgroup (None)" registered with cmd_putgroup for level (89, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "map (None)" registered with cmd_map for level (80, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "notice (None)" registered with cmd_notice for level (40, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "enable (None)" registered with cmd_enable for level (100, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "runas (su)" registered with cmd_runas for level (100, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "spankall (sall)" registered with cmd_spankall for level (80, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "tempban (tb)" registered with cmd_tempban for level (40, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "unmask (None)" registered with cmd_unmask for level (100, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "aliases (alias)" registered with cmd_aliases for level (20, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "disable (None)" registered with cmd_disable for level (100, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "editgroup (None)" registered with cmd_editgroup for level (90, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "groups (None)" registered with cmd_groups for level (90, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "baninfo (bi)" registered with cmd_baninfo for level (40, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "kick (k)" registered with cmd_kick for level (40, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "clientinfo (None)" registered with cmd_clientinfo for level (90, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "restart (None)" registered with cmd_restart for level (100, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "spams (None)" registered with cmd_spams for level (20, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "scream (None)" registered with cmd_scream for level (40, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "newgroup (None)" registered with cmd_newgroup for level (90, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "poke (None)" registered with cmd_poke for level (20, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "die (None)" registered with cmd_die for level (100, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "register (None)" registered with cmd_register for level (0, 0)
091119 22:49:26 DEBUG AdminPlugin: Command "mask (None)" registered with cmd_mask for level (100, 100)
091119 22:49:26 DEBUG AdminPlugin: Command "say (None)" registered with cmd_say for level (20, 100)
091119 22:49:27 DEBUG AdminPlugin: Command "unban (None)" registered with cmd_unban for level (60, 100)
091119 22:49:27 DEBUG AdminPlugin: Command "help (h)" registered with cmd_help for level (0, 100)
091119 22:49:27 DEBUG AdminPlugin: Command "reconfig (None)" registered with cmd_reconfig for level (100, 100)
091119 22:49:27 DEBUG AdminPlugin: Command "admins (None)" registered with cmd_admins for level (20, 100)
091119 22:49:27 DEBUG AdminPlugin: Command "warnremove (wr)" registered with cmd_warnremove for level (20, 100)
091119 22:49:27 DEBUG AdminPlugin: Command "permban (pb)" registered with cmd_permban for level (80, 100)
091119 22:49:27 DEBUG AdminPlugin: Command "time (None)" registered with cmd_time for level (1, 100)
091119 22:49:27 DEBUG AdminPlugin: Command "clear (kiss)" registered with cmd_clear for level (80, 100)
091119 22:49:27 DEBUG AdminPlugin: Command "spam (s)" registered with cmd_spam for level (20, 100)
091119 22:49:27 DEBUG AdminPlugin: Command "spank (sp)" registered with cmd_spank for level (60, 100)
091119 22:49:27 DEBUG SELECT * FROM groups WHERE `keyword` = "superadmin" LIMIT 1
091119 22:49:27 DEBUG Storage: getClientsMatching {'&group_bits': 128}
091119 22:49:27 BOT     Starting Plugin tk
091119 22:49:27 DEBUG Register Event: Client Team Damage: TkPlugin
091119 22:49:27 DEBUG Register Event: Client Team Kill: TkPlugin
091119 22:49:27 DEBUG Register Event: Client Disconnect: TkPlugin
091119 22:49:27 DEBUG Register Event: Game Exit: TkPlugin
091119 22:49:27 DEBUG AdminPlugin: Command "forgive (f)" registered with cmd_forgive for level (0, 100)
091119 22:49:27 DEBUG AdminPlugin: Command "forgivelist (fl)" registered with cmd_forgivelist for level (0, 100)
091119 22:49:27 DEBUG AdminPlugin: Command "forgiveall (fa)" registered with cmd_forgiveall for level (0, 100)
091119 22:49:27 DEBUG AdminPlugin: Command "forgiveinfo (fi)" registered with cmd_forgiveinfo for level (20, 100)
091119 22:49:27 DEBUG AdminPlugin: Command "forgiveclear (fc)" registered with cmd_forgiveclear for level (60, 100)
091119 22:49:27 DEBUG AdminPlugin: Command "forgiveprev (fp)" registered with cmd_forgivelast for level (0, 100)
091119 22:49:27 DEBUG AdminPlugin: Command "grudge (grudge)" registered with cmd_grudge for level (0, 100)
091119 22:49:27 BOT     Starting Plugin stats
091119 22:49:27 DEBUG Register Event: Client Team Damage: StatsPlugin
091119 22:49:27 DEBUG Register Event: Client Team Kill: StatsPlugin
091119 22:49:27 DEBUG Register Event: Client Kill: StatsPlugin
091119 22:49:27 DEBUG Register Event: Client Damage: StatsPlugin
091119 22:49:27 DEBUG Register Event: Game Exit: StatsPlugin
091119 22:49:27 BOT     Starting Plugin adv
091119 22:49:27 DEBUG AdminPlugin: Command "advadd (None)" registered with cmd_advadd for level (100, 100)
091119 22:49:27 DEBUG AdminPlugin: Command "advrate (None)" registered with cmd_advrate for level (100, 100)
091119 22:49:27 DEBUG AdminPlugin: Command "advlist (None)" registered with cmd_advlist for level (100, 100)
091119 22:49:27 DEBUG AdminPlugin: Command "advsave (None)" registered with cmd_advsave for level (100, 100)
091119 22:49:27 DEBUG AdminPlugin: Command "advload (None)" registered with cmd_advload for level (100, 100)
091119 22:49:27 DEBUG AdminPlugin: Command "advrem (None)" registered with cmd_advrem for level (100, 100)
Logged
Jr. Member
**
Posts: 14
Offline Offline
« Reply #205 on: November 20, 2009, 03:25:50 PM »

and the rest of it:
Code:
091119 22:49:27 BOT    Starting Plugin status
091119 22:49:27 BOT    Starting Plugin welcome
091119 22:49:27 DEBUG Register Event: Client Authenticated: WelcomePlugin
091119 22:49:27 BOT    Starting Plugin publist
091119 22:49:27 DEBUG Set cvar _B3 = [B3 v1.2.1 [posix]]
091119 22:49:27 VERBOSE RCON sending (208.167.251.29:28960) set _B3 "B3 v1.2.1 [posix]"
091119 22:49:28 DEBUG PublistPlugin: publist will send heartbeat at 09:55 every day
091119 22:49:28 VERBOSE Added crontab <bound method PublistPlugin.update of <b3.plugins.publist.PublistPlugin instance at 0x8d7242c>> (146968396) - 0s 55m 9h -1d -1M -1DOW
091119 22:49:28 BOT    Starting Plugin punkbuster
091119 22:49:28 DEBUG AdminPlugin: Command "pbss (None)" registered with cmd_pbss for level (20, 100)
091119 22:49:28 DEBUG AdminPlugin: Command "pbbuildbans (None)" registered with cmd_pbbuildbans for level (80, 100)
091119 22:49:28 BOT    Starting Plugin antinoob
091119 22:49:28 DEBUG Register Event: Client Kill: AntinoobPlugin
091119 22:49:28 DEBUG Register Event: Client Damage: AntinoobPlugin
091119 22:49:28 DEBUG Register Event: Game Round Start: AntinoobPlugin
091119 22:49:28 BOT    Starting Plugin ftpytail
091119 22:49:28 DEBUG PublistPlugin: Sending heartbeat to B3 master...
091119 22:49:28 DEBUG FtpytailPlugin: FTP connection not active, attempting to (re)connect
091119 22:49:28 DEBUG FtpytailPlugin: Python Version 2.6, so setting timeout of 10 seconds
091119 22:49:28 BOT    Start reading...
091119 22:49:28 VERBOSE RCON sending (208.167.251.29:28960) PB_SV_PList
091119 22:49:29 DEBUG FtpytailPlugin: FTP = <ftplib.FTP instance at 0x8e0beac>
091119 22:49:29 DEBUG PublistPlugin: Server list updated
091119 22:50:00 VERBOSE RCON sending (208.167.251.29:28960) status
091119 22:50:00 VERBOSE StatusPlugin: Building XML status
091119 22:50:00 DEBUG StatusPlugin: Writing XML status to /home/voodoovoodoo/status.xml
091119 22:50:00 VERBOSE RCON sending (208.167.251.29:28960) say ^0(^2b3^0)^7: ^2Big Brother Bot is watching you...
091119 22:51:00 VERBOSE RCON sending (208.167.251.29:28960) status
091119 22:51:00 VERBOSE StatusPlugin: Building XML status
091119 22:51:00 DEBUG StatusPlugin: Writing XML status to /home/voodoovoodoo/status.xml
091119 22:51:07 CONSOLE 1258689051 J;468589989;0;[OSA]ST-6_VooDoo
091119 22:51:07 DEBUG [OSA]ST-6_VooDoo connected, waiting for Authentication...
091119 22:51:07 DEBUG Our Authentication queue: {'0': 1}
091119 22:51:09 DEBUG newClient: 0, 468589989, [OSA]ST-6_VooDoo
091119 22:51:09 VERBOSE RCON sending (208.167.251.29:28960) PB_SV_PList
091119 22:51:09 VERBOSE connectClient() = {}
091119 22:51:09 DEBUG [OSA]ST-6_VooDoo not yet fully connected, retrying...#:1
091119 22:51:11 CONSOLE 1258689055 JT;468589989;0;allies;[OSA]ST-6_VooDoo;
091119 22:51:13 DEBUG newClient: 0, 468589989, [OSA]ST-6_VooDoo
091119 22:51:13 VERBOSE RCON sending (208.167.251.29:28960) PB_SV_PList
091119 22:51:14 VERBOSE connectClient() = {0: {'slot': '1', 'status': 'OK', 'name': 'ST-6_VooDoo', 'power': '1', 'ss': '0', 'ip': '76.26.90.68', 'auth': '0.0', 'pbid': '1c0b871eb201ab8ea25d23b083c86e37', 'guid': '1c0b871eb201ab8ea25d23b083c86e37', 'os': 'W', 'port': '28960'}}
091119 22:51:14 DEBUG ST-6_VooDoo found in status/playerList
091119 22:51:14 DEBUG sp: {'slot': '1', 'status': 'OK', 'name': 'ST-6_VooDoo', 'power': '1', 'ss': '0', 'ip': '76.26.90.68', 'auth': '0.0', 'pbid': '1c0b871eb201ab8ea25d23b083c86e37', 'guid': '1c0b871eb201ab8ea25d23b083c86e37', 'os': 'W', 'port': '28960'}
091119 22:51:14 VERBOSE 0 cid changed from None to 0
091119 22:51:14 DEBUG Client Connected: [0] [OSA]ST-6_VooDoo - 1c0b871eb201ab8ea25d23b083c86e37 ({'codguid': '468589989'})
091119 22:51:14 DEBUG Storage: getClient <b3.clients.Client object at 0x8e0be6c>
091119 22:51:14 BOT    Client found in storage 2, welcome back [OSA]ST-6_VooDoo
091119 22:51:14 DEBUG Storage: setClient <b3.clients.Client object at 0x8e0be6c>
091119 22:51:14 DEBUG Storage: setClient data {'time_add': 1258313935, 'time_edit': 1258689074, 'name': '[OSA]ST-6_VooDoo', 'group_bits': 128, 'ip': '76.26.90.68', 'auto_login': 1, 'greeting': 'Welcome to =OSA= Bolts only. For a complete list of rules type !rules.', 'pbid': '1c0b871eb201ab8ea25d23b083c86e37', 'connections': 36, 'mask_level': 0, 'guid': '1c0b871eb201ab8ea25d23b083c86e37', 'id': 2}
091119 22:51:14 DEBUG Client Authorized: [0] [OSA]ST-6_VooDoo - 1c0b871eb201ab8ea25d23b083c86e37
091119 22:51:14 VERBOSE Queueing event Client Authenticated <b3.clients.Client object at 0x8e0be6c>
091119 22:51:14 VERBOSE Parsing Event: Client Authenticated: WelcomePlugin
091119 22:52:00 VERBOSE RCON sending (208.167.251.29:28960) status
091119 22:52:00 VERBOSE StatusPlugin: Building XML status
091119 22:52:00 DEBUG StatusPlugin: Writing XML status to /home/voodoovoodoo/status.xml
091119 22:52:00 VERBOSE RCON sending (208.167.251.29:28960) say ^0(^2b3^0)^7: ^2 Do not piss off ^7=OSA= ^3VooDoo
091119 22:52:23 CONSOLE 1258689127 J;1787245627;1;[OSA]roundman3gz
091119 22:52:23 DEBUG [OSA]roundman3gz connected, waiting for Authentication...
091119 22:52:23 DEBUG Our Authentication queue: {'1': 1}
091119 22:52:25 DEBUG newClient: 1, 1787245627, [OSA]roundman3gz
091119 22:52:25 VERBOSE RCON sending (208.167.251.29:28960) PB_SV_PList
091119 22:52:26 VERBOSE connectClient() = {0: {'slot': '1', 'status': 'OK', 'name': 'ST-6_VooDoo', 'power': '1', 'ss': '0', 'ip': '76.26.90.68', 'auth': '3.3', 'pbid': '1c0b871eb201ab8ea25d23b083c86e37', 'guid': '1c0b871eb201ab8ea25d23b083c86e37', 'os': 'W', 'port': '28960'}}
091119 22:52:26 DEBUG [OSA]roundman3gz not yet fully connected, retrying...#:1
091119 22:52:30 CONSOLE 1258689133 JT;1787245627;1;axis;[OSA]roundman3gz;
091119 22:52:30 DEBUG newClient: 1, 1787245627, [OSA]roundman3gz
091119 22:52:30 VERBOSE RCON sending (208.167.251.29:28960) PB_SV_PList
091119 22:52:31 VERBOSE connectClient() = {0: {'slot': '1', 'status': 'OK', 'name': 'ST-6_VooDoo', 'power': '1', 'ss': '0', 'ip': '76.26.90.68', 'auth': '3.0', 'pbid': '1c0b871eb201ab8ea25d23b083c86e37', 'guid': '1c0b871eb201ab8ea25d23b083c86e37', 'os': 'W', 'port': '28960'}, 1: {'slot': '2', 'status': 'INIT', 'name': 'roundman3gz', 'power': '1', 'ss': '0', 'ip': '76.26.70.67', 'auth': '0.0', 'pbid': 'fa64351b705793505252129cd0096308', 'guid': 'fa64351b705793505252129cd0096308', 'os': ' ', 'port': '28960'}}
091119 22:52:31 DEBUG roundman3gz found in status/playerList
091119 22:52:31 DEBUG sp: {'slot': '2', 'status': 'INIT', 'name': 'roundman3gz', 'power': '1', 'ss': '0', 'ip': '76.26.70.67', 'auth': '0.0', 'pbid': 'fa64351b705793505252129cd0096308', 'guid': 'fa64351b705793505252129cd0096308', 'os': ' ', 'port': '28960'}
091119 22:52:31 VERBOSE 0 cid changed from None to 1
091119 22:52:31 DEBUG Client Connected: [1] [OSA]roundman3gz - fa64351b705793505252129cd0096308 ({'codguid': '1787245627'})
091119 22:52:31 DEBUG Storage: getClient <b3.clients.Client object at 0x8e0bc8c>
091119 22:52:31 BOT    Client found in storage 6, welcome back [OSA]roundman3gz
091119 22:52:31 DEBUG Storage: setClient <b3.clients.Client object at 0x8e0bc8c>
091119 22:52:31 DEBUG Storage: setClient data {'time_add': 1258334471, 'time_edit': 1258689151, 'name': '[OSA]roundman3gz', 'group_bits': 128, 'ip': '76.26.70.67', 'auto_login': 1, 'greeting': '', 'pbid': 'fa64351b705793505252129cd0096308', 'connections': 27, 'mask_level': 0, 'guid': 'fa64351b705793505252129cd0096308', 'id': 6}
091119 22:52:31 DEBUG Client Authorized: [1] [OSA]roundman3gz - fa64351b705793505252129cd0096308
091119 22:52:31 VERBOSE Queueing event Client Authenticated <b3.clients.Client object at 0x8e0bc8c>
091119 22:52:31 VERBOSE Parsing Event: Client Authenticated: WelcomePlugin
091119 22:52:41 CONSOLE 1258689146 K;468589989;0;allies;[OSA]ST-6_VooDoo;1787245627;1;axis;[OSA]roundman3gz;fg42_mp;4242;MOD_HEAD_SHOT;head
091119 22:52:41 VERBOSE Queueing event Client Kill (4242.0, 'fg42_mp', 'head', 'MOD_HEAD_SHOT')
091119 22:52:41 VERBOSE Parsing Event: Client Kill: StatsPlugin
091119 22:52:41 VERBOSE stats vshift 0.5
091119 22:52:41 VERBOSE Parsing Event: Client Kill: AntinoobPlugin
091119 22:52:41 DEBUG AntinoobPlugin: Banned Weapon: fg42_mp - Round time: 195
091119 22:52:41 DEBUG AntinoobPlugin: player.kick: [OSA]roundman3gz Warn: ^3Rule #9: Bolts Only!!!
091119 22:52:41 DEBUG AntinoobPlugin: Unknown error while _bannedweaponskick list processing
Logged
Newbie
*
OS: Linux
Type: Owner dedicated server(s)
Gameservers: CoD4
Posts: 5
Offline Offline
WWW
« Reply #206 on: November 29, 2009, 11:04:21 AM »

I'd like to report a bug + fix to the 1.0.7 release of antinoob.

When you try to change the value of <set name="bannedonly_info_message"> in the xml file it will not work because it is not used by the plugin.

To fix, make a backup copy of your antinoob.py and edit the following lines:

@Line 88 find:
Code:
self._infomessage = self.config.get('settings', 'info_message')

After add:
Code:
self._bannedonlyinfomessage = self.config.get('settings', 'bannedonly_info_message')

That should fix the bug and make it read the config item properly.
Logged
Full Member
***
OS: Linux
Type: Owner dedicated server(s)
Gameservers: CoD4
Posts: 50
Offline Offline
« Reply #207 on: December 06, 2009, 08:25:23 AM »

Many thanks too KulWun & RickH. I am still trying go get it to work. But what you say is clear.
Because it's starts OK, but only at the beginning it says: "... sec passed - ^3all weapons unlocked!!!". After that it look like it stop working?  Undecided
Logged
Newbie
*
OS: Linux
Type: Owner dedicated server(s)
Gameservers: CoD4
Posts: 5
Offline Offline
WWW
« Reply #208 on: December 06, 2009, 10:47:56 AM »

Danger89 in reply to your PM (as i cant reply to your PM because i have less than 5 posts). I don't know why it will not work. I have basic programming language about other languages than PHP And that one i posted seems to be a quick one that's easy to fix. I have found out that it does not warn people for dropping a marty grenade or using GL's or RPG's.

My config for version 1.0.5 can be seen below.
Currently I'm using the 1.0.5 version with the same fix as I described above. That one does warn people for the weapons above.

Code:
<configuration plugin="antinoob">
<settings name="settings">
<set name="warn_duration">10</set>
<set name="warning_rule">rule2</set>
<set name="banned_warning_rule">rule2</set>
<set name="unlock_message">^3 %s seconds passed - ^3all weapons unlocked!!!</set>
<set name="info_message">^3 No nades, airstrike, tubes ^5for %s seconds of the round!!!</set>
<set name="bannedonly_info_message">^3 Please, No marty/last stand, GL's or RPG's !!!</set>
</settings>
<maps>
<!-- <map name="mp_citystreets">10</map> -->
</maps>
<weapons>
<!-- Penalty -->
<!-- 0 is timed, gives warnings until kick. -->
<!-- 1 is map long, gives warnings until kick -->
<!-- 2 is timed, insta-kicks -->
<!-- 3 is map long, insta-kicks. -->
<!-- Tubes -->
<weapon penalty="1" mod="">gl_ak47_mp</weapon>
<weapon penalty="1" mod="">gl_g3_mp</weapon>
<weapon penalty="1" mod="">gl_g36c_mp</weapon>
<weapon penalty="1" mod="">gl_m4_mp</weapon>
<weapon penalty="1" mod="">gl_m14_mp</weapon>
<weapon penalty="1" mod="">gl_m16_mp</weapon>
<weapon penalty="1" mod="">gl_mp</weapon>
<!-- Nades -->   
<!-- Airstike -->       
<!-- Heli -->       
<!-- <weapon  penalty="2" mod="">helicopter_mp</weapon> -->   
<!-- Martyr -->
<weapon penalty="1" mod="MOD_GRENADE_SPLASH">frag_grenade_short_mp</weapon>
<!-- Bullets w/Launcher -->
<!-- Pistols -->
<!-- Rockets -->
<weapon penalty="1" mod="">rpg_mp</weapon>
<!-- Mounted Machine Gun -->
<!-- <weapon penalty="1" mod="">saw_bipod_crouch_mp</weapon> -->
</weapons>
</configuration>

The config i used 1.0.7 is this:

Code:
<configuration plugin="antinoob">
<settings name="settings">
<set name="warn_duration">0</set>
<set name="warning_rule">rule2</set>
<set name="banned_warning_rule">rule2</set>
<set name="unlock_message">^3 %s seconds passed - ^3all weapons unlocked!!!</set>
<set name="info_message">^3 No nades, airstrike, tubes or heli ^5first %s seconds of the round!!!</set>
<set name="bannedonly_info_message">^3 Please, No marty/last stand, GL's or RPG's !!!</set>
</settings>
<!-- <maps>
<map name="mp_citystreets">15</map>
</maps> -->

<!-- <weapon_timed_warn>
<weapon mod="MOD_GRENADE_SPLASH"></weapon>
</weapon_timed_warn>
<weapon_timed_kick>
</weapon_timed_kick>
<weapon_banned_kick>
</weapon_banned_kick> -->
<weapon_banned_warn>
<!-- <weapon mod="MOD_FALLING"></weapon> -->
<weapon mod="">frag_grenade_short_mp</weapon>
<weapon mod="">gl_ak47_mp</weapon>
<weapon mod="">gl_g3_mp</weapon>
<weapon mod="">gl_g36c_mp</weapon>
<weapon mod="">gl_m4_mp</weapon>
<weapon mod="">gl_m14_mp</weapon>
<weapon mod="">gl_m16_mp</weapon>
<weapon mod="">gl_mp</weapon>
<weapon mod="">rpg_mp</weapon>
</weapon_banned_warn>
</configuration>

Further information I do not have I'm afraid.
Logged
Full Member
***
OS: Linux
Type: Owner dedicated server(s)
Gameservers: CoD4
Posts: 50
Offline Offline
« Reply #209 on: December 10, 2009, 11:08:48 AM »

@rwsvoodoo
AND
@McLoad

With debug mode on (set 10 at log_level).

Code:
091210 13:04:30 CONSOLE 57:26 Weapon;d3ccc6....;7;Nickname#2;m16_gl_mp
091210 13:04:44 CONSOLE 57:40 K;0882d82b.....;6;;Nickname#1;d3ccc66f7b1bf9e77faead1d50a15a0a;7;;Nickname#2;gl_m16_mp;135;MOD_IMPACT;torso_upper
091210 13:04:44 DEBUG   AntinoobPlugin: Banned Weapon: gl_m16_mp - Round time: 453
091210 13:04:44 DEBUG   AntinoobPlugin: player.kick: Nickname#2 Warn: ^3Rule #2: No clan stacking, members must split evenly between the teams
[b]091210 13:04:44 DEBUG   AntinoobPlugin: Unknown error while _bannedweaponskick list processing[/b]

*FIXED*

EDIT!
Many Thanks too Walker!
Conclusion there are just a lot of bugs in versie 1.0.7.

Code:
line 150
change self._bannedweaponskick.append(_wi) into self._bannedweaponswarn.append(_wi)

line 294 & 301
change self._adminPlugin.warnClient(player, self._warningrule , None, False) into self._adminPlugin.warnClient(player, warningrule , None, False)


line 278 & 285
change player.kick(warningmsg, '', none) into player.kick(warningmsg)

« Last Edit: December 10, 2009, 11:34:52 AM by danger89 » Logged
Tags:
Pages: 1 ... 12 13 [14] 15   Go Up
  Print  
 
Jump to: