
palota
Moderators-
Posts
115 -
Joined
-
Last visited
-
Days Won
71
Content Type
Forums
Profiles
Events
Gallery
Downloads
Articles
Everything posted by palota
-
Hello, This error is not related to bots. It happens during nextmap, so there must be something wrong in your mod. Nobody can help you if you didn't publish your source code. I would recommend to use GitHub.
-
Did you read the wiki ? The cappoint must be created by these commands when you are standing at the exit: /bot goal_create cappoint transmitter /bot goal_save I attached gm script which disables PLANT_2transmitter7 goal so that engineers do not drop dynamite near the transmitter. basor2light.gm
-
I made waypoints for KT_G-Rush. You can download them from GitHub.
-
I tried that map but got errors GeneratePermanentShader - MAX_SHADERS HIT and a lot of textures are missing. It's impossible to steal the tank. I cannot win because I don't know how to get in the bank. It looks like it was converted from the original official goldrush map. You can use goldrush.way from ET and rename it to goldrush_b2.way.
-
RtCW -The bots are not used with MG42 guns
palota replied to PuNkReAS's topic in Omnibot - Development, Discussion & Support
I found the s4ndmod source code on GitHub. I did not find CU mod. It would be helpful if you could share it. -
To shoot windows you have to add this line into the OnBotJoin function: bot.TargetBreakableDist = 90.0; New scripts already have that line, then just delete //~ You can use regular expressions .* to enable all MOUNTMG42 and REPAIRMG42 goals: SetAvailableMapGoals( TEAM.AXIS, true, ".*MG42_.*" );
-
You've converted the waypoints successfully. Now you should create some goals. Add a CAPPOINT goal at the ship so that Allies know where to take the documents Add three GRENADE goals to destroy barriers on the beach Enable MOUNTMG42 goals for Axis team Change priorities. CHECKPOINT_beach_flag should have the same priority as FLAG_War_Documents. Create routes.
-
RtCW -The bots are not used with MG42 guns
palota replied to PuNkReAS's topic in Omnibot - Development, Discussion & Support
Why don't you want to use omnibot mod ? Is Pubj better ? Are there any features in Pubj mod which are not in omnibot mod ? -
RtCW -The bots are not used with MG42 guns
palota replied to PuNkReAS's topic in Omnibot - Development, Discussion & Support
Hi, Why do you use Pubj ? Do you know developers of Pubj ? Do they have a web page ? How can I download it ? Where is the source code ? -
I think it's impossible to directly load a .bsp file. But you can easily make .pk3 from it. Create a new maps folder, move .bsp and .script files into the folder, compress the maps folder to ZIP, rename ZIP to PK3, then move PK3 to Return to Castle Wolfenstein/Main.
-
Omnibot connecting issue
palota replied to hellreturn's topic in Omnibot - Development, Discussion & Support
Please start a new topic for every bug. Tell us your Linux version, RTCW version, map name. -
Omnibot connecting issue
palota replied to hellreturn's topic in Omnibot - Development, Discussion & Support
It is compatible. Do you have installed the latest Omni-bot version 0.87 ? This is not related to the connection issue. If you have more questions, start a new topic. -
Omni-bot ET View File Omni bot ET files Submitter palota Submitted 03/02/23 Category Mods
-
Omnibot connecting issue
palota replied to hellreturn's topic in Omnibot - Development, Discussion & Support
I don't know what changes they did in ETL. There are hundred of bugs and issues in ETL. The comment from ryzyk-krzysiek tells something about g_etbot_interface.cpp. That file is in mods, so only authors of mods can modify it. -
Omnibot connecting issue
palota replied to hellreturn's topic in Omnibot - Development, Discussion & Support
Kicking bots is the worst approach. It's just a workaround. Of course it would be better to fix this bug it in the mods. But many mods like NoQuarter and Jaymod are finished and abandoned. -
Omnibot connecting issue
palota replied to hellreturn's topic in Omnibot - Development, Discussion & Support
We need to test it on some popular public server with enough active players. -
Omnibot connecting issue
palota replied to hellreturn's topic in Omnibot - Development, Discussion & Support
I tried to fix it by kicking connecting bots. But I can't test it because I don't have a dedicated server. You can get the new version from Assembla SVN. It's in file et/scripts/goals/goal_selectweapons.gm. -
Omni-bot wiki has been moved to https://mygamingtalk.com/wiki/OMNIBOT_-_Enemy_Territory_Modification
-
noclip works only if cheats are enabled. To enable cheats, you must start a map with devmap command instead of map command. English is easy to learn. Programming languages are hard to learn. Wildwest beach is similar to mp_beach. I would recommend to look into file mp_beach.gm to find some inspiration. Engineer try to plant a dynamite on the nearest waypoint. If the nearest waypoint is behind the wall, they cannot get to it and fail. You should move the waypoints near the beach wall. You must create a CAPPOINT goal at the mine cart where the gold has to be delivered. Why there is usepath property at the waypoints near the mine cart ? You should never use usepath, it is obsolete. If you remove it, then bots can go downstairs to the gold.
-
Hi, I never used OB_DMS. I use keyboard shortcuts for everything. You can bind keys to Omni-bot commands in your server config. bind KP_INS "bot addbot" bind KP_DEL "bot kickall" bind g "bot sag" bind = "set timescale 9" bind - "set timescale 1" bind BACKSPACE "noclip" You can also define your custom commands in file omni-bot/rtcw/scripts/rtcw_autoexec_user.gm Commands["wc"] = function(_params) { ExecCommand("waypoint_addflag crouch"); }; Commands["g"] = function(_params) { ExecCommand("goal_create " + _params[0] + " " + _params[1]); }; Commands["gp"] = function(_params) { arg = _params[0]; if (tableCount(_params) > 1) { arg += " " + _params[1]; } ExecCommand("goal_setproperty " + arg); }; Commands["nav"] = function(_params) { if(_params[0]==null){ ExecCommand("waypoint_clearproperty paththrough"); } else{ ExecCommand("waypoint_setproperty paththrough Navigation_PT:" + _params[0]); } }; Bots need a gm script in order to know what to do. Have you read the wiki ? If you already made some waypoints, please post them here.
-
Do you have any waypoints for the winterbase map ?