Hi, I've created a new race but i need some help implimenting it as i have little scripting experience. The problem is that when you try to start a new game with a new race it is not possible to start the game because the guy in the opposite cell never taunts you, so the game never gets started.
I've found the script for the guy that is supposed to taunt you, but i'm not sure how i need top modify it to incorporate a new race.
Here is the script:
scn ValenDrethScript
float timer
short talk
short lastStage
begin gamemode
if timer > 0
set timer to timer - getsecondspassed
elseif talk == 1
set lastStage to CharacterGen.tauntStage
set timer to SayTo player, CharGenTaunt2 1
if getstage characterGen == 9
set characterGen.convTimer to timer - .5
if characterGen.debug == 1
message "DEBUG: Valen Dreth last info, convTimer to %.2f", characterGen.convTimer
endif
endif
; pause briefly between taunt stages
if lastStage< CharacterGen.tauntStage
set timer to timer + 10
endif
endif
if talk == 0
if getstage charactergen == 6 && CGValenDrethTauntMarker.getdistance player < 610 && getstagedone MQ01 10 == 1
set talk to 1
evp
endif
endif
if talk == 2 && timer <= 0
set talk to 3
evp
endif
end
begin onHit player
stopcombat
if getav health < 15
forceav health 15
endif
end
any help would be greatly apreciated!