.:: Bots United ::.  
filebase forums discord server github wiki web
cubebot epodbot fritzbot gravebot grogbot hpbbot ivpbot jkbotti joebot
meanmod podbotmm racc rcbot realbot sandbot shrikebot soulfathermaps yapb

Go Back   .:: Bots United ::. > Cyborg Factory > YaPB
YaPB Yet another POD-Bot flavor by Whistler and Jeefo Counter-Strike

Reply
 
Thread Tools
First beta release of YaPB 2
Old
  (#1)
Whistler
Summoner
 
Whistler's Avatar
 
Status: Offline
Posts: 1,499
Join Date: Feb 2004
Location: Mist Village
Default First beta release of YaPB 2 - 18-05-2006

Download:
http://yapb.bots-united.com/files/yapb-2_0-beta.zip

YaPB 2 is based on JetBot by Dmitry Zhukov, who is known as "strelomet" in this forum. Jetbot was a fork of my original version of YaPB.

This version is maintained by him.

INSTALLATION:
1. Download YaPB from http://yapb.bots-united.com and install
2. Download this file, and uncompress it to [CS install dir]\cstrike\addons\yapb
3. Edit liblist.gam:
PHP Code:
gamedll "addons/yapb/dlls/yapb.dll"
gamedll_linux "addons/yapb/dlls/yapb_i386.so" 
Or configure the Metamod to load these files as plugins.


Please report bugs in this forum.

Last edited by Whistler; 18-05-2006 at 15:00..
  
Reply With Quote
Re: First beta release of YaPB 2
Old
  (#2)
KWo
Developer of PODBot mm
 
KWo's Avatar
 
Status: Offline
Posts: 3,425
Join Date: Apr 2004
Default Re: First beta release of YaPB 2 - 18-05-2006

Quote:
Originally Posted by Whistler
YaPB 2 is based on JetBot by Dmitry Zhukov, who is known as "strolemet" in this forum, which was a fork of my original version of YaPB. This version is maintained & developed by him.
That's strelomet, not strolemet
  
Reply With Quote
Re: First beta release of YaPB 2
Old
  (#3)
Whistler
Summoner
 
Whistler's Avatar
 
Status: Offline
Posts: 1,499
Join Date: Feb 2004
Location: Mist Village
Default Re: First beta release of YaPB 2 - 18-05-2006

Corrected Thanks
  
Reply With Quote
Re: First beta release of YaPB 2
Old
  (#4)
The Storm
Council Member / E[POD]bot developer
 
The Storm's Avatar
 
Status: Offline
Posts: 1,618
Join Date: Jul 2004
Location: Bulgaria
Default Re: First beta release of YaPB 2 - 18-05-2006

JetBot is based on the old PODbot 2.6 sources. In the begining Dmitry Zhukov first started with the sources of YaPB but later he started again with the sources of the old PODbot 2.6.
EDIT: I downloaded the latest sources of JetBot and I'm now confused...
Code:
// Jetbot - AI Development project for Counter-Strike. Remake of POD-Bot 2.6.
// Copyright (c) 2005-2006, by Dmitry Zhukov. All Rights Reserved.
//
// Copyright (c) 2000-2001, by Markus Klinge. All Rights Reserved.
// Copyright (c) 2003-2005, by Wei Mingzhi. All Rights Reserved.
In the old sources I think that the last line was not there but I don't have backups. Oh never mind.
  
Reply With Quote
Re: First beta release of YaPB 2
Old
  (#5)
Ancient
PodBot MM's Laziest Waypointer
 
Ancient's Avatar
 
Status: Offline
Posts: 1,010
Join Date: Jan 2005
Location: Nebraska, United States of America
Default Re: First beta release of YaPB 2 - 18-05-2006

There are no way points.

And I don't know if putting addbot in yapb.cfg will help any.
  
Reply With Quote
Re: First beta release of YaPB 2
Old
  (#6)
jeefo
путинхуйлоебаное
 
jeefo's Avatar
 
Status: Offline
Posts: 452
Join Date: Nov 2005
Location: Saint-Petersburg
Default Re: First beta release of YaPB 2 - 19-05-2006

@THE_STORM:
What ever it was, it's now YAPB

@Ancient:
First downlaod http://yapb.bots-united.com/files/yapb.exe (with waypoints), and then update with this zip.
  
Reply With Quote
Re: First beta release of YaPB 2
Old
  (#7)
Ancient
PodBot MM's Laziest Waypointer
 
Ancient's Avatar
 
Status: Offline
Posts: 1,010
Join Date: Jan 2005
Location: Nebraska, United States of America
Default Re: First beta release of YaPB 2 - 19-05-2006

Yes, I know what your thinking; I'm dumb

I'll be testing it later after school and this weekend and will report bugs when I see them.
Thanky ou.
  
Reply With Quote
Re: First beta release of YaPB 2
Old
  (#8)
Whistler
Summoner
 
Whistler's Avatar
 
Status: Offline
Posts: 1,499
Join Date: Feb 2004
Location: Mist Village
Default Re: First beta release of YaPB 2 - 19-05-2006

I've found a bug which causes the language files not correctly loaded.

The details is that the InitConfig() is called before the settings in yapb.cfg take effect. So the language which is set in yapb.cfg is never actually loaded.

and the patch may be adding this into the InitConfig():
PHP Code:
   ServerCommand ("exec addons/yapb/config/yapb.cfg"); 
btw, I would recommend using dynamic memory allocation for the translator which can save a lot of memory.
  
Reply With Quote
Re: First beta release of YaPB 2
Old
  (#9)
jeefo
путинхуйлоебаное
 
jeefo's Avatar
 
Status: Offline
Posts: 452
Join Date: Nov 2005
Location: Saint-Petersburg
Default Re: First beta release of YaPB 2 - 19-05-2006

Thanks, i've already found this bug, while porting bot to be able use different botnames & chat using language cvar. i've simply put InitConfig () into ServerActivate (), and add yapb.cfg exec into GameDLLInit ().

So names.cfg & chat.cfg is now affected by language cvar, and located in language directory...

Quote:
btw, I would recommend using dynamic memory allocation for the translator which can save a lot of memory.
ok

P.S.
Adding execution of config onto top of InitConfig () has no effect (but i don't know why). Language is changing but not after execution.

P.P.S
Also fixed crash, when bots trying to use chat, when it wasn't loaded correctly...

Last edited by jeefo; 19-05-2006 at 17:43..
  
Reply With Quote
Re: First beta release of YaPB 2
Old
  (#10)
The Storm
Council Member / E[POD]bot developer
 
The Storm's Avatar
 
Status: Offline
Posts: 1,618
Join Date: Jul 2004
Location: Bulgaria
Default Re: First beta release of YaPB 2 - 19-05-2006

Yeah dinamic memory safe a lot of resources. Check out EPB source, all the config and languarge files code use dinamic memory, the .dll is less bigger than before too.
  
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

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



Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
vBulletin Skin developed by: vBStyles.com