Creating a kit with a "Fallen" option
Greener
Member Posts: 430
I'm interested in creating an option to have my Kensai "fall" to an ordinary fighter if the parties reputation drops to a certain level. I've managed to compile the following reading through various other mods, but I have no idea where to place it or how to use it, nor if its even complete. Any advice would be appreciated...
IF
Kit(Player1,KENSAI)
ReputationLT(Player1,8)
Global(“FallenKensai”,”GLOBAL",0)
THEN
RESPONSE #100
SetGlobal(“FallenKensai”,”GLOBAL",1)
ActionOverride(Player1,AddKit(FIGHTER))
Wait(1)
DisplayStringNoName(Player1,~You've become dishonoured, and are no longer a Kensai~)
PlaySound("REPDOWN")
END
IF
Kit(Player1,KENSAI)
ReputationLT(Player1,8)
Global(“FallenKensai”,”GLOBAL",0)
THEN
RESPONSE #100
SetGlobal(“FallenKensai”,”GLOBAL",1)
ActionOverride(Player1,AddKit(FIGHTER))
Wait(1)
DisplayStringNoName(Player1,~You've become dishonoured, and are no longer a Kensai~)
PlaySound("REPDOWN")
END
0
Comments