Raised This Month: $32 Target: $400
 8% 

[PAID]TF2 bot disable "force_suicide"


Post New Thread Reply   
 
Thread Tools Display Modes
ph
AlliedModders Donor
Join Date: Mar 2006
Old 10-24-2017 , 14:00   Re: [PAID]TF2 bot disable "force_suicide"
Reply With Quote #11

Default valve maps for example.

cp_dustbowl
pl_upward


Code:
tv_enable "1"
tf_bot_quota_mode "fill"
tf_bot_auto_vacate "1"
tf_bot_join_after_player "0"
tf_bot_quota 24
tf_bot_keep_class_after_death 1
tf_bot_taunt_victim_chance 0
__________________
ph is offline
asherkin
SourceMod Developer
Join Date: Aug 2009
Location: OnGameFrame()
Old 10-24-2017 , 15:18   Re: [PAID]TF2 bot disable "force_suicide"
Reply With Quote #12

Quote:
Originally Posted by The Team Ghost View Post
Payment for this would be too much for what it's worth.
Quote:
Originally Posted by The Team Ghost View Post
Ok after looking into the matter it seems it might be significantly harder to block or prevent this from happening.
Hahahahahahahahahaha. Haha.
__________________
asherkin is offline
The Team Ghost
Senior Member
Join Date: Jun 2016
Location: OnClientConnect(int ME)
Old 10-24-2017 , 16:47   Re: [PAID]TF2 bot disable "force_suicide"
Reply With Quote #13

Quote:
Originally Posted by asherkin View Post
Hahahahahahahahahaha. Haha.
Ah shush asherkin I'm still a beginner let me at least try ok
__________________
- Steam
The Team Ghost is offline
ph
AlliedModders Donor
Join Date: Mar 2006
Old 11-02-2017 , 08:43   Re: [PAID]TF2 bot disable "force_suicide"
Reply With Quote #14

Will you be able to compile a script to stop bots committing forced suicide ??


Looking for a fix/solution to this:-

L 11/02/2017 - 11:07:17: "Freakin' Unbelievable<6><BOT><Blue>" committed suicide with "world" (attacker_position "-2979 2332 -438")
L 11/02/2017 - 11:07:17: "Freakin' Unbelievable<6><BOT><>" triggered "force_suicide"
L 11/02/2017 - 11:07:17: "The Freeman<22><BOT><Blue>" committed suicide with "world" (attacker_position "-3092 2446 -438")
L 11/02/2017 - 11:07:17: "The Freeman<22><BOT><>" triggered "force_suicide"
L 11/02/2017 - 11:07:17: "The Administrator<7><BOT><Red>" triggered "player_builtobject" (object "OBJ_TELEPORTER") (position "2503 996 -191")
L 11/02/2017 - 11:07:17: "Me<14><BOT><Blue>" committed suicide with "world" (attacker_position "-2971 1937 -433")
L 11/02/2017 - 11:07:17: "Me<14><BOT><>" triggered "force_suicide"
L 11/02/2017 - 11:07:17: "MindlessElectrons<21><BOT><Red>" committed suicide with "world" (attacker_position "2483 1144 -211")
L 11/02/2017 - 11:07:17: "MindlessElectrons<21><BOT><>" triggered "force_suicide"
L 11/02/2017 - 11:07:19: "Chell<16><BOT><Blue>" committed suicide with "world" (attacker_position "-2925 1554 -351")
L 11/02/2017 - 11:07:19: "Chell<16><BOT><>" triggered "force_suicide"
L 11/02/2017 - 11:07:20: "BeepBeepBoop<25><BOT><Blue>" committed suicide with "world" (attacker_position "-3013 1735 -388")
L 11/02/2017 - 11:07:20: "BeepBeepBoop<25><BOT><>" triggered "force_suicide"


Any ideas how I can fix this problem.
__________________
ph is offline
asherkin
SourceMod Developer
Join Date: Aug 2009
Location: OnGameFrame()
Old 11-02-2017 , 09:00   Re: [PAID]TF2 bot disable "force_suicide"
Reply With Quote #15

Quote:
Originally Posted by ph View Post
Any ideas how I can fix this problem.
Did today's TF2 update not solve it?
__________________
asherkin is offline
ph
AlliedModders Donor
Join Date: Mar 2006
Old 11-02-2017 , 09:47   Re: [PAID]TF2 bot disable "force_suicide"
Reply With Quote #16

Unfortunately no

Remember, this is with addon folder completely disabled.
__________________

Last edited by ph; 11-02-2017 at 09:47.
ph is offline
Bacardi
Veteran Member
Join Date: Jan 2010
Location: mom's basement
Old 11-02-2017 , 09:52   Re: [PAID]TF2 bot disable "force_suicide"
Reply With Quote #17

Spoiler

*edit
This cvar cause it
tf_bot_keep_class_after_death 1

*edit
Seems bots in beginning of map try to change class and make suicide because of that, but this cvar stop them to change. This create loop of force suicide.
Can be fixed by disable temporary tf_bot_keep_class_after_death, then change back later. When bots have change they class.


*edit
Just disable tf_bot_keep_class_after_death 0
Once human player change class -> bots start change too to different class than player.





*edit
Try this
Code:
"tf_bot_reevaluate_class_in_spawnroom" = "0" ( def. "1" )
 game cheat
 - If set, bots will opportunisticly switch class while in spawnrooms if their c
urrent class is no longer their first choice.


in config
Code:
sm_cvar tf_bot_reevaluate_class_in_spawnroom 0
tf_bot_keep_class_after_death 1
__________________
Do not Private Message @me

Last edited by Bacardi; 11-02-2017 at 11:40. Reason: yes
Bacardi is offline
ph
AlliedModders Donor
Join Date: Mar 2006
Old 11-05-2017 , 09:13   Re: [PAID]TF2 bot disable "force_suicide"
Reply With Quote #18

Thank you, I shall try this.
__________________
ph is offline
dedimark
Senior Member
Join Date: Jul 2015
Location: London
Old 11-05-2017 , 10:18   Re: [PAID]TF2 bot disable "force_suicide"
Reply With Quote #19

Quote:
Originally Posted by Bacardi View Post
Spoiler

*edit
This cvar cause it
tf_bot_keep_class_after_death 1

*edit
Seems bots in beginning of map try to change class and make suicide because of that, but this cvar stop them to change. This create loop of force suicide.
Can be fixed by disable temporary tf_bot_keep_class_after_death, then change back later. When bots have change they class.


*edit
Just disable tf_bot_keep_class_after_death 0
Once human player change class -> bots start change too to different class than player.





*edit
Try this
Code:
"tf_bot_reevaluate_class_in_spawnroom" = "0" ( def. "1" )
 game cheat
 - If set, bots will opportunisticly switch class while in spawnrooms if their c
urrent class is no longer their first choice.


in config
Code:
sm_cvar tf_bot_reevaluate_class_in_spawnroom 0
tf_bot_keep_class_after_death 1
Quote:
17:167 L 11/05/2017 - 16:22:04: "Me<23><BOT><Red>" triggered "force_suicide"
17:167 L 11/05/2017 - 16:22:05: "Chell<25><BOT><Red>" triggered "medic_death" against "Chell<25><BOT><Red>" (healing "0") (ubercharge "0")
17:167 L 11/05/2017 - 16:22:05: "Chell<25><BOT><Red>" committed suicide with "world" (attacker_position "1632 1473 256")
17:167 L 11/05/2017 - 16:22:05: "Chell<25><BOT><Red>" triggered "force_suicide"
17:167 L 11/05/2017 - 16:22:05: "Chucklenuts<20><BOT><Blue>" stuck (position "-102.18 181.39 56.03") (duration "6.45")
17:167 L 11/05/2017 - 16:22:05: path_goal ( "-100.00 175.00 8.68" )
17:168 L 11/05/2017 - 16:22:06: "Chucklenuts<20><BOT><Blue>" stuck (position "-101.76 174.74 56.03") (duration "7.50")
17:168 L 11/05/2017 - 16:22:06: path_goal ( "-100.00 175.00 8.68" )
17:16:40 L 11/05/2017 - 16:22:07: "Chucklenuts<20><BOT><Blue>" stuck (position "-103.64 173.61 56.03") (duration "8.55")
17:16:40 L 11/05/2017 - 16:22:07: path_goal ( "-100.00 175.00 8.68" )
17:16:41 L 11/05/2017 - 16:22:08: "Chucklenuts<20><BOT><Blue>" stuck (position "-65.00 164.82 37.13") (duration "9.60")
17:16:41 L 11/05/2017 - 16:22:08: path_goal ( "0.00 0.00 12.03" )
17:16:55 L 11/05/2017 - 16:22:22: "Chucklenuts<20><BOT><Blue>" stuck (position "79.97 272.44 10.72") (duration "4.20")
17:16:55 L 11/05/2017 - 16:22:22: path_goal ( "100.00 277.57 6.85" )
17:16:55 L 11/05/2017 - 16:22:22: "Chucklenuts<20><BOT><Blue>" stuck (position "79.97 276.56 36.03") (duration "4.31")
17:16:55 L 11/05/2017 - 16:22:22: path_goal ( "100.00 277.57 6.85" )
17:16:56 L 11/05/2017 - 16:22:23: "Chucklenuts<20><BOT><Blue>" stuck (position "97.77 277.35 54.37") (duration "5.35")
17:16:56 L 11/05/2017 - 16:22:23: path_goal ( "100.00 275.00 6.90" )
17:16:57 L 11/05/2017 - 16:22:24: "Chucklenuts<20><BOT><Blue>" stuck (position "102.72 270.21 54.77") (duration "6.40")
17:16:57 L 11/05/2017 - 16:22:24: path_goal ( "100.00 275.00 6.90" )
17:16:58 L 11/05/2017 - 16:22:25: "Chucklenuts<20><BOT><Blue>" stuck (position "104.38 278.82 54.30") (duration "7.45")
17:16:58 L 11/05/2017 - 16:22:25: path_goal ( "100.00 277.97 6.84" )
17:16:59 L 11/05/2017 - 16:22:26: "Chucklenuts<20><BOT><Blue>" stuck (position "95.87 279.27 54.26") (duration "8.50")
17:16:59 L 11/05/2017 - 16:22:26: path_goal ( "100.00 277.97 6.84" )
17:17:00 L 11/05/2017 - 16:22:27: "Chucklenuts<20><BOT><Blue>" stuck (position "33.82 304.13 9.02") (duration "9.60")
17:17:00 L 11/05/2017 - 16:22:27: path_goal ( "-180.00 400.00 3.69" )
17:17:01 L 11/05/2017 - 16:22:28: "Freakin' Unbelievable<15><BOT><Red>" triggered "medic_death" against "Freakin' Unbelievable<15><BOT><Red>" (healing "0") (ubercharge "0")
17:17:01 L 11/05/2017 - 16:22:28: "Freakin' Unbelievable<15><BOT><Red>" committed suicide with "world" (attacker_position "1648 1413 256")
17:17:01 L 11/05/2017 - 16:22:28: "Freakin' Unbelievable<15><BOT><Red>" triggered "force_suicide"
17:17:01 L 11/05/2017 - 16:22:28: "H@XX0RZ<24><BOT><Blue>" committed suicide with "world" (attacker_position "-1559 -1416 258")
17:17:01 L 11/05/2017 - 16:22:28: "H@XX0RZ<24><BOT><Blue>" triggered "force_suicide"
17:17:01 L 11/05/2017 - 16:22:28: "It's Filthy in There!<18><BOT><Blue>" committed suicide with "world" (attacker_position "1040 -1831 256")
17:17:01 L 11/05/2017 - 16:22:28: "It's Filthy in There!<18><BOT><Blue>" triggered "force_suicide"
17:17:01 L 11/05/2017 - 16:22:28: "Archimedes!<17><BOT><Red>" committed suicide with "world" (attacker_position "1478 1393 256")
17:17:01 L 11/05/2017 - 16:22:28: "Archimedes!<17><BOT><Red>" triggered "force_suicide"
17:17:01 L 11/05/2017 - 16:22:28: "WITCH<21><BOT><Red>" committed suicide with "world" (attacker_position "1136 1336 256")
17:17:01 L 11/05/2017 - 16:22:28: "WITCH<21><BOT><Red>" triggered "force_suicide"
17:17:01 L 11/05/2017 - 16:22:28: "Me<23><BOT><Red>" committed suicide with "world" (attacker_position "1445 1441 256")
17:17:01 L 11/05/2017 - 16:22:28: "Me<23><BOT><Red>" triggered "force_suicide"
17:17:01 L 11/05/2017 - 16:22:28: "Still Alive<22><BOT><Blue>" committed suicide with "world" (attacker_position "1097 -1938 256")
17:17:01 L 11/05/2017 - 16:22:28: "Still Alive<22><BOT><Blue>" triggered "force_suicide"
17:17:01 L 11/05/2017 - 16:22:28: "Kill Me<19><BOT><Red>" committed suicide with "world" (attacker_position "1308 1329 256")
17:17:01 L 11/05/2017 - 16:22:28: "Kill Me<19><BOT><Red>" triggered "force_suicide"
17:17:01 L 11/05/2017 - 16:22:28: "Chell<25><BOT><Red>" triggered "medic_death" against "Chell<25><BOT><Red>" (healing "0") (ubercharge "0")
17:17:01 L 11/05/2017 - 16:22:28: "Chell<25><BOT><Red>" committed suicide with "world" (attacker_position "-1528 1871 256")
17:17:01 L 11/05/2017 - 16:22:28: "Chell<25><BOT><Red>" triggered "force_suicide"
17:17:05 L 11/05/2017 - 16:223: "Chucklenuts<20><BOT><Blue>" stuck (position "-79.97 395.84 4.11") (duration "4.20")
17:17:05 L 11/05/2017 - 16:223: path_goal ( "-180.00 400.00 3.69" )
17:17:06 L 11/05/2017 - 16:223: "Chucklenuts<20><BOT><Blue>" stuck (position "-79.97 420.31 29.42") (duration "4.31")
17:17:06 L 11/05/2017 - 16:223: path_goal ( "-180.00 400.00 3.69" )
17:17:13 L 11/05/2017 - 16:22:40: "The Administrator<16><BOT><Blue>" committed suicide with "world" (attacker_position "30 -12 -292")
17:17:13 L 11/05/2017 - 16:22:40: "The Administrator<16><BOT><Blue>" triggered "drowned"
ctf_2fort

Last edited by dedimark; 11-05-2017 at 10:19.
dedimark is offline
Bacardi
Veteran Member
Join Date: Jan 2010
Location: mom's basement
Old 11-05-2017 , 10:32   Re: [PAID]TF2 bot disable "force_suicide"
Reply With Quote #20

well can you just leave tf_bot_keep_class_after_death as disable ?

*edit
Are you using custom *.nav files ??
__________________
Do not Private Message @me

Last edited by Bacardi; 11-05-2017 at 10:38.
Bacardi is offline
Reply


Thread Tools
Display Modes

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


All times are GMT -4. The time now is 15:30.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode