.:: 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
Re: Latest YaPB Beta
Old
  (#61)
ProRaiL
Member
 
Status: Offline
Posts: 33
Join Date: Mar 2008
Default Re: Latest YaPB Beta - 19-04-2008

I noticed that rusher bots cannot defuse in normal way, because they can't "catch" it from first time (or always reset defusing) and run away if they already defusing and bomb is gonna blow, when they actually have time to finish it.

edit:

ok, checked more: careful bots always reset defusing, looks like rusher ones can defuse but when time is good enough, normal bots do it good

Last edited by ProRaiL; 19-04-2008 at 12:01..
  
Reply With Quote
Re: Latest YaPB Beta
Old
  (#62)
Fixer
Member
 
Status: Offline
Posts: 57
Join Date: Jan 2008
Default Re: Latest YaPB Beta - 21-05-2008

Hi there!

I think would be perfect to move the site and source to sourceforge SVN is also usefull for source's keeping and developing Isn't it?

2Jeefo
Did u watch the changes in the sources? Anyway, u must(or Headshot) return to yapb 2.51 aiming system!!! Don't forget for it!

I think YAPB tactics and aiming system in 2.51 is already one of the best. Finally remains a button clicking bug and weapons cycling.

Also, make the TODO list
(English writing lesson is over )
  
Reply With Quote
Re: Latest YaPB Beta
Old
  (#63)
He@dShot
Member
 
He@dShot's Avatar
 
Status: Offline
Posts: 40
Join Date: Mar 2008
Location: Romania, Craiova
Post Re: Latest YaPB Beta - 01-06-2008

Yeah, let me tell you what I think of Yapb...no offense Whistler...but the source code is one big mess...cannot understand anything from it...I'm coding my own bot now...hahahah....I just need to figure out the waypointing system and it's ready...! And wtf is wrong with the aiming system...the bots turn way too fast even if it's FPS...bla bla bla...I think the Condition-Zero bots are way better...except picking up weapons, reaction delay, grenade throwing, ducking wihle shooting...if anyone can make a metamod plugin that will fix these issues, the CZ-Bot would be the PERFECT bot....


The noblest pleasure is the joy of understanding...Leonardo da Vinci
  
Reply With Quote
Re: Latest YaPB Beta
Old
  (#64)
Fixer
Member
 
Status: Offline
Posts: 57
Join Date: Jan 2008
Default Re: Latest YaPB Beta - 02-01-2009

Report Status!
  
Reply With Quote
Re: Latest YaPB Beta
Old
  (#65)
RealHunk
Mr. Death
 
RealHunk's Avatar
 
Status: Offline
Posts: 17
Join Date: Oct 2008
Location: Russian Federation
Default Re: Latest YaPB Beta - 03-01-2009

Dead...i contact j4 in icq and he said that there is no more yapb 4 him...maybe someone continue developing this bot.
  
Reply With Quote
Re: Latest YaPB Beta
Old
  (#66)
Fixer
Member
 
Status: Offline
Posts: 57
Join Date: Jan 2008
Default Re: Latest YaPB Beta - 03-01-2009

Todo for (2.52/2.51? based) 2.53 ?

+ new admins for a forum
+ update svn http://gina.svn.sourceforge.net/viewvc/gina/thunk/ ????
+ revert "yapb_" to "yb_"
+ fix weaker bots (revert to 2.51; Headshot issue???)
+ button using
+ fix bad hostage rescuing and bomb planting?
+ fix walking with sniper rifles(?)
+ check "bot trying to sit on the place where is another bot are sitting"
+ check often speaking of message (camping hostages... and other)
+ test "end round" from menu for crashes
+ updater is obsolete?
+ check configuration center compatibility to newest build

And after all test this build under cs 1.1+ and 1.6+ steam/non steam and release final 2.53.

+ update the site (news and downloads page)
+ update sticky topic in the forum

yapb 2.51 source: http://forums.bots-united.com/attach...1&d=1193997733

yapb 2.51 win32 build: http://forums.bots-united.com/attach...0&d=1193997673

latest(?) source: http://forums.bots-united.com/attach...1&d=1207292042 (modif. by Headshot)

yapb 2.52 by headshot (weaker bots then in 2.51): http://forums.bots-united.com/attach...0&d=1207242024

Last edited by Fixer; 03-01-2009 at 22:19..
  
Reply With Quote
Re: Latest YaPB Beta
Old
  (#67)
Immortal_BLG
Member
 
Status: Offline
Posts: 171
Join Date: Nov 2007
Location: Russian Federation
Default Re: Latest YaPB Beta - 04-01-2009

about button using: at reading an source code I have noticed bug in navigate.cpp in this part of a code:
PHP Code:
   // check if we are going through a door...
   
TraceLine (pev->originm_waypointOrigintrueGetEntity (), &tr);

   if (!
FNullEnt (tr.pHit) && FNullEnt (m_liftEntity) && strncmp (STRING (tr.pHit->v.classname), "func_door"9) == 0)
   {
      
// if the door is near enough...
      
if ((GetEntityOrigin (tr.pHit) - pev->origin).GetLengthSquared () < 2500)
      {
         
m_lastCollTime GetWorldTime () + 0.5// don't consider being stuck

         
if (g_randGen.Long (1100) < 50)
            
MDLL_Use (tr.pHitGetEntity ()); // also 'use' the door randomly
      
}

      
// make sure we are always facing the door when going through it
      
m_aimFlags &= ~(AimPos_LastEnemy AimPos_PredictEnemy);

      
edict_t *button FindNearestButton (STRING (tr.pHit->v.classname));

      
// check if we got valid button
      
if (!FNullEnt (button))
      {
         
m_pickupItem button;
         
m_pickupType PickupType_Button;

         
m_navTimeset GetWorldTime ();
      } 
As I have noticed here function FindNearestButton() takes not targetname, but classname, therefore bot tries to use a door instead of the button, which wants to open.
And one more triviality: in function FindNearestButton () it is necessary to rename 'className' on 'targetName'
  
Reply With Quote
Re: Latest YaPB Beta
Old
  (#68)
Fixer
Member
 
Status: Offline
Posts: 57
Join Date: Jan 2008
Default Re: Latest YaPB Beta - 04-01-2009

Good one Immortal_BFG! Don't forget to build a new dll and I will test it for sure (but first you need to resolve problem with weaker(slow bot rotation?) bots in 2.52. I think aim/reaction/other settings was changed in the source. And also change back yapb_ to yb_ prefix to allow default configs and confcenter to work).

Thanks

Also, what to do with svn?

Last edited by Fixer; 04-01-2009 at 16:58..
  
Reply With Quote
Re: Latest YaPB Beta
Old
  (#69)
Immortal_BLG
Member
 
Status: Offline
Posts: 171
Join Date: Nov 2007
Location: Russian Federation
Default Re: Latest YaPB Beta - 05-01-2009

2Fixer at once I want to warn you: I the beginner in programming, therefore I only can find insignificant defects in a code.
And concerning of this: " resolve problem with weaker (slow bot rotation?) bots in 2.52. I think aim/reaction/other settings was changed in the source. And also change back yapb_ to yb_ prefix to allow default configs and confcenter to work " - it is necessary simply to begin with official release v2.51.0.1528, as these problems there is not present.
  
Reply With Quote
Re: Latest YaPB Beta
Old
  (#70)
Fixer
Member
 
Status: Offline
Posts: 57
Join Date: Jan 2008
Default Re: Latest YaPB Beta - 05-01-2009

>it is necessary simply to begin with official release v2.51.0.1528, as these problems there is not present.

Where did you get that dll? I have only 2.51.0.1360 (with good aiming)

Also, in 2.52 Headshot maked some good changes as:

- Bots now use shield more accurately !
- Bots now attempt to seek cover when wounded or using weak guns ! < check this
- Bots don't jump around so much ! < check this
- Instead of "yb_" it uses "yapb_". Think it's more correct since it's called YaPB.
< incorrect. Incompatible with confcenter and config
- New Chat Messages and radio commands:
Enemy Spotted: Bots will attack-move to position of team-mate that issued radio command !
Stick Together, team: Bots will follow team-mate that issued radio command !
- Shield Protection system improoved !
- Weapon reload bug fixed (I think) ! (Bots would hold the fire button if no even if no ammo in clip). very important fix
- No jumping when using zoomable rifles. < check this

So can you paste this changes from 2.52 to 2.51 except aiming/reaction issues?
  
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