Jump to content

vargatom

Members
  • Posts

    41
  • Joined

  • Last visited

Recent Profile Visitors

16549 profile views

vargatom's Achievements

  1. Good Evening! In the Goldrus.gm file is a navigation script what called rnadehall. I would like to ask can I set priority of this goal? If yes how to do it? An other question about this goal: this goal is visited by BOT automatically if spamnades is true or BOT will visit in case only if he go to somewhere and this goal is on your path? Finally I would like to ask this goal can be set class specific? (for example to engineers only) Thank You for reading and special thanks for the helping answers!
  2. Thanks for help! Well the content of the Omni-Bot Bible is bad!
  3. Happy new year everyone! New year new problem I want to use omnibot on a laptop but it won't start. OS is Win10 omni-bot is 0.91 I extracted the downloaded .zip file to the C:\Program Files (x86)\ In server.cfg set omnibot_path = "C:\Program Files (x86)\omni-bot" When I start it I get the message that the omni-bot_et.dll not found. I don't understand what could be wrong.
  4. https://www.facebook.com/share/p/15WywWWDjq/ Developer enabled to share tt.pk3
  5. In this case important state is whem entity is alredy destroyed.
  6. Happy Holidays! I would like to query the state of a breakable entity during game but when it is already destroyed it only gives an error message. How should this be queried correctly? smile_trigger = { Name = "smile_trigger", TriggerOnClass = CLASS.ANYPLAYER, OnEnter = function(ent) { if(GetEntTeam(ent) == TEAM.AXIS) { Map.SmileTriggerCount += 1; Util.MapDebugPrint("SmileTriggerCount = ^5" + Map.SmileTriggerCount); ent1 = GetGameEntityFromId(90); if(EntityIsValid(ent1)) { print("Entity 90 is valid"); } else { print("Entity 90 is'n valid"); } } }, OnExit = function(ent) { if(GetEntTeam(ent) == TEAM.AXIS) { Map.SmileTriggerCount -= 1; if(!Map.StairsWay && Map.SmileTriggerCount < 1) { SetAvailableMapGoals(TEAM.AXIS, false, "FLAG_keymad"); } Util.MapDebugPrint("SmileTriggerCount = ^5" + Map.SmileTriggerCount); } }, },
  7. Can the current stamina value of the BOT be queried during game?
  8. I thought this method is not beneficial for the script operation. I have anothers question in this subject When I follow a BOT in spectator mode and BOT sprints why dosen't show that his stamina is running out? Are real values visible in spectator mode?
  9. Hi, fixed it. Sry! When Bot reached this waypont is a newer message again.
  10. Thank for help! With this settings BOT just waits and dosen't move after 3 seconds
  11. Hi everybody, I need a help to tell my bots if they arrived to a waypoint stand some seconds there then continue for your way.
×
×
  • Create New...