#Slash problem for servercommand

1 messages · Page 1 of 1 (latest)

astral zenith
#

Hello! I want to change logic for the bots. For that, I created a custom kv3 file, and I want to use it on my map.
I have a point_servercommand entity and a logic_auto entity. I have a lot of commands that change some params for the map (mp_warmup_end, mp_startmoney 0 etc). There are all work good.
But when I add next command: mp_bot_ai_bt "scripts/ai/deathmatch/bt_my.kv3", and run the map, loading is stuck on:

Valve Software - vbsp.exe (Dec 13 2022)
12 threads
Using shader api: shaderapiempty.dll
Failed to cache VMT specified in resource/vmtcache.txt: materials/models/player/custom_player/paintkits/gloves/slick_grape.vmt
Failed to cache VMT specified in resource/vmtcache.txt: materials/models/player/custom_player/paintkits/gloves/sporty_space_blue.vmt
Failed to cache VMT specified in resource/vmtcache.txt: materials/models/player/custom_player/paintkits/gloves/retro_grey.vmt
materialPath: D:\SteamLibrary\steamapps\common\Counter-Strike Global Offensive\csgo\materials
Loading d:\steamlibrary\steamapps\common\counter-strike global offensive\csgo\maps\betbest_d.vmf
Map revision 22

And that's all. If I changed previous command to mp_bot_ai_bt "scripts\ai\deathmatch\bt_my.kv3", I will get next error Entity info_player_terrorist (-1891.14 2627.77 36.29) leaked!. And I don't know how can I fix it? Can I use this command in logic_auto? Maybe I need to set the path relatively? Thanks for any help
The main idea was to set bots and disable moving by !activator - AddOutput - movetype 0 and disable shooting by changing kv3 file. If you know how can I disable shooting for bots, it will be great.
bot_stop 1 for me is not good, because bots rotate to 0 yaw. I need to fix their rotation

#

It is an example where bot_stop 1. They watch to 0, but in Hammer editor it is set to the different yaw

astral zenith
#

Fixed: Do not write mp_bot_ai_bt "scripts\ai\deathmatch\bt_my.kv3" with quotes. Just mp_bot_ai_bt scripts\ai\deathmatch\bt_my.kv3, and it will work