Most of the plugins here are made by B3 users and the authors may not visit frequently. If you need support for plugins or if questions remain unanswered, you will have to contact the author directly. Read the full Support Disclaimer here
NOTE: Do not attach plugins to your forumtopics! Attachements are periodically removed by maintenance tasks. Upload your plugins to our Downloads section instead!

You are here: Big Brother Bot ForumAdd-OnsPlugins DiscussionPlugins by xlr8or (Moderator: Freelander)Echelon - Web investigation tool for B3
Pages: 1 ... 4 5 [6] 7 8 ... 19   Go Down
  Print  
Author Topic: Echelon - Web investigation tool for B3  (Read 72806 times) Bookmark and Share
Former Dev. (senate)
*****
OS: Windows
Type: Owner dedicated server(s)
Gameservers: COD4, BFBC2
Posts: 92
Offline Offline
WWW
Support Specialty: BFBC2 parser
« Reply #75 on: March 25, 2008, 11:52:22 AM »

Enter a comment/notice Smiley
Logged


Newbie
*
Posts: 7
Offline Offline
WWW
« Reply #76 on: March 25, 2008, 11:53:19 AM »

heh.. Goood Job !
Sorry for my english.. !

1) I think that b3 +XLR plugins -> the bast way to administrate COD4 servers.
2) I dont know PHP at all... but... i like google and thats way i made small mod for echelon -> @matic -> give a level to the player via www (such like in sourcebans in counter-strike source software)

 As you see my mod change native layout of echelon client details.

My modifications:

clientdetails.php
adminadd.php  -> place it in /admin subdirectory

Download from:

http://pliki.g4g.pl/rozne/adminadd.zip
Logged

Former Dev. (senate)
*****
OS: Windows
Type: Owner dedicated server(s)
Gameservers: COD4, BFBC2
Posts: 92
Offline Offline
WWW
Support Specialty: BFBC2 parser
« Reply #77 on: March 25, 2008, 11:57:03 AM »

Yay, way prettier. I will download yours instead Smiley
thanks
Logged

Sr. Member
****
OS: Linux
Type: Owner dedicated server(s)
Gameservers: COD4
Posts: 228
Offline Offline
WWW
« Reply #78 on: March 25, 2008, 12:00:47 PM »

Enter a comment/notice Smiley

hmmm it would be nicer with a reason in the ban row. Other thing is that ban will expire, but notice not Wink
Logged

Newbie
*
Posts: 7
Offline Offline
WWW
« Reply #79 on: March 25, 2008, 01:42:11 PM »

Heh.. next mod Smiley
Big THX for Anubis !



Reason for TempBan

Files:
clientdetails.php
tempban.php  in /admin subdirectory
http://pliki.g4g.pl/rozne/tempreason.zip
Logged

Former Dev. (senate)
*****
OS: Windows
Type: Owner dedicated server(s)
Gameservers: COD4, BFBC2
Posts: 92
Offline Offline
WWW
Support Specialty: BFBC2 parser
« Reply #80 on: March 25, 2008, 06:37:19 PM »

Ok, im out of ideas now lol, whats not showing is the possibility to add links
Logged

Full Member
***
Posts: 97
Offline Offline
WWW
« Reply #81 on: March 25, 2008, 08:55:54 PM »

i cant get any bans to work, instant or temp Sad
I click for either  and my screen reloads and nothing..
is there a permission im missing to execute the command?
Logged


xfire=specialopx
www.fallenclan.com
Sr. Member
****
Posts: 238
Offline Offline
« Reply #82 on: March 26, 2008, 03:53:58 AM »

Ahhh yes Smiley Now the php files contains changes regarding tempbanning.
Thank you xlr8or. I will let you know about all strange behaviors which I find.

ps. flinkaflenkaflrsk: how it is possible that you had correct package before xlr8or uploaded repacked zip file? :>
huh it makes me wonder cause i was convinced i downloaded it from here. I guess i got mixed up sorry for that didnt mean to create confusion Smiley
Logged

[ www.xlrstats.com ]
Project Lead
*
OS: Linux
Type: Owner dedicated server(s)
Gameservers: CoD, CoD2, CoD5, UrT
Posts: 2022
Offline Offline
WWW
Support Specialty: B3-Core, CoD/UrT/WoP/ETPro parsers, Plugin development
« Reply #83 on: March 26, 2008, 04:28:06 AM »

I've made a selection of the mods above and added them to the current development version. Available for next release will be:
- tempban reason
- setting player level (from unregistered to admin - not above group bit 16)
Logged

Sr. Member
****
OS: Linux
Type: Owner dedicated server(s)
Gameservers: COD4
Posts: 228
Offline Offline
WWW
« Reply #84 on: March 26, 2008, 05:37:42 AM »

huh it makes me wonder cause i was convinced i downloaded it from here. I guess i got mixed up sorry for that didnt mean to create confusion Smiley

it's OK Wink

cheers
Logged

Newbie
*
Posts: 7
Offline Offline
WWW
« Reply #85 on: March 26, 2008, 08:21:25 AM »

Hello :0
I noticed a bug in tempban.php !!!

Find code:
Code:
// PB_SV_BanGuid [guid] [player_name] [IP_Address] [reason]
if (( $type == "Ban" ) && ( $PBactive == "1" )) {
$command = "pb_sv_banguid " . $pbid . " " . $clientname . " " . $client_ip . " " . $reason;
rcon ($command);
sleep(2);
$command = "pb_sv_updbanfile";
rcon ($command);
}

and change this with that:
Code:
// PB_SV_BanGuid [guid] [player_name] [IP_Address] [reason]
if (( $type == "TempBan" ) && ( $PBactive == "1" )) {
$command = "pb_sv_banguid " . $pbid . " " . $clientname . " " . $client_ip . " " . $reason;
rcon ($command);
sleep(2);
$command = "pb_sv_updbanfile";
rcon ($command);
}

Nobody noticed that program wait for $type=='Ban' cvar instead $type=='TempBan'
Script added bans to database but i couldn't find echelon's bans at pbbans.dat



« Last Edit: March 26, 2008, 12:05:04 PM by wiciu » Logged

Sr. Member
****
Posts: 238
Offline Offline
« Reply #86 on: March 27, 2008, 09:23:38 AM »

You re right nice catch I did not check that part since I coded it for an urban terror game which does not use pb so i left it out of scope
Logged

[ www.xlrstats.com ]
Project Lead
*
OS: Linux
Type: Owner dedicated server(s)
Gameservers: CoD, CoD2, CoD5, UrT
Posts: 2022
Offline Offline
WWW
Support Specialty: B3-Core, CoD/UrT/WoP/ETPro parsers, Plugin development
« Reply #87 on: March 27, 2008, 09:38:20 AM »

I'm not sure that it is wise to write a permanent PB ban to the punkbuster banlist while placing a temporary B3 ban. Punkbuster will not remove the ban after the tempban expired and the player will not be able to reconnect untill you remove the PB ban from the PB banlist.

You might consider writing pb banlists from the B3 punkbuster plugin and the rebuildbans (crontab) function. This will however render all streaming bans from punksbusted.com or pbbans.com useless...

Consider this before you alter the tempban.php. I for one won't modify the tempban.php in the development version.
Logged

Newbie
*
Posts: 7
Offline Offline
WWW
« Reply #88 on: March 27, 2008, 11:04:07 AM »

Maybe would be better to write tempbans in the /main/ban.txt file  ?
« Last Edit: March 27, 2008, 10:46:30 PM by wiciu » Logged

[ www.xlrstats.com ]
Project Lead
*
OS: Linux
Type: Owner dedicated server(s)
Gameservers: CoD, CoD2, CoD5, UrT
Posts: 2022
Offline Offline
WWW
Support Specialty: B3-Core, CoD/UrT/WoP/ETPro parsers, Plugin development
« Reply #89 on: March 27, 2008, 11:52:26 PM »

B3 is perfectly able to deal with bans and tempbans on its own. Writing permanent bans to the pb banlist is a good back-up facility when B3 is offline. I just don't think we need a back-up facility for temporary bans, B3 will be online practically all the time.
Logged

Tags:
Pages: 1 ... 4 5 [6] 7 8 ... 19   Go Up
  Print  
 
Jump to:  


Rate this page +1 at Google Search


SimplePortal 2.3.1 © 2008-2009, SimplePortal