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

FF2 Minion model not showing when boss uses rage.


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
DemomanMoment
Junior Member
Join Date: Feb 2022
Old 02-22-2023 , 17:10   Minion model not showing when boss uses rage.
Reply With Quote #1

I am trying to modify the seediler code to make it spawn minions for my boss, but they seem to show up as errors, even though the model shows up just fine in the hlmv.
"rage_cloneattack"
{
"slot" "0"
"amount" "n/3 + 1"
"die on boss death" "true"

"character"
{
"name" "Dirk Worker"
"class" "sniper"
"model" "models\freak_fortress_2\dirkw\dirkworker.mdl "
"health_formula" "(((76.08+n)*(n-1)^1.00341)+204.6)/2.8"
"ragedamage" "-1"
"sound_block_vo" "1"

"description_en" "WORK FOR DIRK, HUNT THEM ALL!"

"tf_weapon_club"
{
"index" "1013"
"rank" "12"
"quality" "7"
"override" "true"
"show" "false"
"preserve" "true"
"attributes" "2 ; 3.0 ; 28 ; 0.1 ; 68 ; -1 ; 252 ; 0.5 ; 275 ; 1 ; 400 ; 1"
}

"catch_phrase"
{
"1" "freak_fortress_2\dirkboss\dirkwin.mp3"
}
}
}
DemomanMoment is offline
FurretX
Member
Join Date: Jul 2021
Location: Your Walls
Old 02-22-2023 , 22:42   Re: Minion model not showing when boss uses rage.
Reply With Quote #2

Check to see if you downloaded the model. If you didn’t, make sure you added the minion’s model to the original boss’ mod_precache section.
If you did download it but still see an error, the path may be messed up in the minion’s file path. Try to see if removing the “models/“ part of the path fixes it, I use a different minion summon ability so I’m not very sure how the path works for this subplugin.
__________________
FurretX
FF2 Boss Developer for Gemara Servers
FF2 Boss Developer for The Freaks of Mann City
Owner of FXFF2

“Nothing will ever work first try.”

Feel free to message me, I’ll respond within a few days.
FurretX is offline
Kolaxie
Member
Join Date: Aug 2021
Location: I live inside internet
Old 02-23-2023 , 10:52   Re: Minion model not showing when boss uses rage.
Reply With Quote #3

Quote:
Originally Posted by DemomanMoment View Post
I am trying to modify the seediler code to make it spawn minions for my boss, but they seem to show up as errors, even though the model shows up just fine in the hlmv.
"rage_cloneattack"
{
"slot" "0"
"amount" "n/3 + 1"
"die on boss death" "true"

"character"
{
"name" "Dirk Worker"
"class" "sniper"
"model" "models\freak_fortress_2\dirkw\dirkworker.mdl "
"health_formula" "(((76.08+n)*(n-1)^1.00341)+204.6)/2.8"
"ragedamage" "-1"
"sound_block_vo" "1"

"description_en" "WORK FOR DIRK, HUNT THEM ALL!"

"tf_weapon_club"
{
"index" "1013"
"rank" "12"
"quality" "7"
"override" "true"
"show" "false"
"preserve" "true"
"attributes" "2 ; 3.0 ; 28 ; 0.1 ; 68 ; -1 ; 252 ; 0.5 ; 275 ; 1 ; 400 ; 1"
}

"catch_phrase"
{
"1" "freak_fortress_2\dirkboss\dirkwin.mp3"
}
}
}
This is defenitly a weird way to make a cfg + it cannot works, it should be something like this

Code:
		"character"
		{
			"name"			"Dirk Worker"
			"class"			"sniper"
			"model"			"models\freak_fortress_2\dirkw\dirkworker.mdl"
			"health_formula"	"(((76.08+n)*(n-1)^1.00341)+204.6)/2.8"
			"ragedamage"		"-1"
			"sound_block_vo"	"1"
			
			"description_en"	"WORK FOR DIRK, HUNT THEM ALL!"
			
			"tf_weapon_club"
			{
				"index"		"1013"
				"rank"		"12"
				"quality"	"7"
				"override"	"true"
				"show"		"false"
				"preserve"	"true"
				"attributes"	"2 ; 3.0 ; 28 ; 0.1 ; 68 ; -1 ; 252 ; 0.5 ; 275 ; 1 ; 400 ; 1"
			}
	                
                        "rage_cloneattack"
	                {
		        "slot"			"0"
		        "amount"		"n/3 + 1"
		        "die on boss death"	"true"
                        }
			
			"catch_phrase"
			{
				"1"		"freak_fortress_2\dirkboss\dirkwin.mp3"
			}
		}
__________________
Owner of Team Fortress 2 Gemara Servers: https://discord.gg/AgsZvfQSut

"Don't worry, it will obviously work first try. Trust me" -Famous Last Words

(Suck at Source SP smh)
Kolaxie is offline
Frixu
Senior Member
Join Date: Mar 2021
Location: Poland
Old 02-23-2023 , 15:12   Re: Minion model not showing when boss uses rage.
Reply With Quote #4

Quote:
Originally Posted by DemomanMoment View Post
I am trying to modify the seediler code to make it spawn minions for my boss, but they seem to show up as errors, even though the model shows up just fine in the hlmv.
}
just give ur cfg and i can fix it.
Frixu is offline
DemomanMoment
Junior Member
Join Date: Feb 2022
Old 02-23-2023 , 15:25   Re: Minion model not showing when boss uses rage.
Reply With Quote #5

Quote:
Originally Posted by Frixu View Post
just give ur cfg and i can fix it.
sure
https://www.mediafire.com/file/iqwpc.../dirk.cfg/file

Last edited by DemomanMoment; 02-23-2023 at 15:34.
DemomanMoment is offline
DemomanMoment
Junior Member
Join Date: Feb 2022
Old 02-23-2023 , 16:17   Re: Minion model not showing when boss uses rage.
Reply With Quote #6

Quote:
Originally Posted by FurretX View Post
Check to see if you downloaded the model. If you didn’t, make sure you added the minion’s model to the original boss’ mod_precache section.
If you did download it but still see an error, the path may be messed up in the minion’s file path. Try to see if removing the “models/“ part of the path fixes it, I use a different minion summon ability so I’m not very sure how the path works for this subplugin.
It was the fact I never had the models downloaded, thanks for pointing that out!
DemomanMoment is offline
Frixu
Senior Member
Join Date: Mar 2021
Location: Poland
Old 02-23-2023 , 18:30   Re: Minion model not showing when boss uses rage.
Reply With Quote #7

should works now
Attached Files
File Type: cfg dirk.cfg (3.5 KB, 27 views)
Frixu is offline
FurretX
Member
Join Date: Jul 2021
Location: Your Walls
Old 02-23-2023 , 22:42   Re: Minion model not showing when boss uses rage.
Reply With Quote #8

Quote:
Originally Posted by DemomanMoment View Post
It was the fact I never had the models downloaded, thanks for pointing that out!
Of course, always glad to help out.
__________________
FurretX
FF2 Boss Developer for Gemara Servers
FF2 Boss Developer for The Freaks of Mann City
Owner of FXFF2

“Nothing will ever work first try.”

Feel free to message me, I’ll respond within a few days.
FurretX is offline
Reply



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 22:10.


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