Jump to content

[WIP] Call of Hircine: Bloodmoon Rising


TheElderInfinity

Recommended Posts

Does someone know how to make quests?

From the stat point of view there i no real work till we figure out how to make a new skill tree out of the nowhere so i want to move on another side of the werebear side.

For who has interest on putting down the first lines for the werebear quest please send me a pm.

Link to comment
Share on other sites

  • Replies 822
  • Created
  • Last Reply

Top Posters In This Topic

Does someone know how to make quests?

From the stat point of view there i no real work till we figure out how to make a new skill tree out of the nowhere so i want to move on another side of the werebear side.

For who has interest on putting down the first lines for the werebear quest please send me a pm.

 

If you're interested in werebears a quest script is what you'll need.

 

Most likely, you'll just need to snowclone the PlayerWerewolf quest and the associated WerewolfChangeEffect quest to make it apply to a werebear instead. (which, at the bear (hehehehehehe) minimum entails adding a "WerebearBeastRace" and changing the script to reference that instead)

 

Btw, if anyone would like to attend the writer's meeting, we'll be doing over steam via the team's steam group "Bloodmoon Rising Team"

 

PM me your steam names and I'll invite you.

Link to comment
Share on other sites

Ok guys seems ive done with Werewolf gameplay part...i tweaked more werewolf to be balanced in normal gameplay without difficulty mods and also with difficulty mods.

Now ill add sounds.

 

Edit: I found someone who can help me with new perk tree , Elder add him in the team if he accepts to be part of it, if he accepts ill let you know.

Edited by Xahstur
Link to comment
Share on other sites

Oh, speaking of the werewolf sounds - do you plan on carrying any from the old set over? I was pretty fond of those.

 

Also, I find that when I'm in werewolf form at night, if I feed, I spontaneously transform back (and then immediately to a werewolf again). Is anyone having this issue besides me?

Edited by dianacat777
Link to comment
Share on other sites

Oh, speaking of the werewolf sounds - do you plan on carrying any from the old set over? I was pretty fond of those.

 

Also, I find that when I'm in werewolf form at night, if I feed, I spontaneously transform back (and then immediately to a werewolf again). Is anyone having this issue besides me?

 

I'm not sure. I don't remember that happening, though I'm not quite sure this was actually a stable version of the script, just one that was sort of working and wasn't tested extensively. Sorry. :wacko:

 

 

 

Speaking of Scripts, I've created a .rar with a rewritten version of the script. This one makes extensive use of Papyrus fragments and quest stages (wouldn't work without them), so I can't just upload the .psc, the whole package is necessary.

 

This version doesn't work, but I'm putting it up so that the other people who are working with scripts can take a look and help debug it.

Edited by TheElderInfinity
Link to comment
Share on other sites

This work :P stage 0 starts and goes into the while loop after that it never want to go out :P probably the que is so long it would take a few minutes for it to catch up to the right time :D

 

While loops work even if your in menu while onupdate dosnt.

OnUpdate can be set in intervals while goes as fast as it can so I`m happy my PC didnt explode ^_-

 

Try this its like an OnUpdate :P

 

Function IdleTiming()
; Called from stage 0

 if GameHour.Value < 19.95 || GameHour.Value > 5.00
   cohTransformationsAllowed.SetValue(0)
   TransformationEvent == false
   Start == false
 else 
   Start == true
 endif

 if Start == True && PlayerIsWerewolf.Value == 1
   If  FirstTransformation == False
     setStage(1)
   elseif FirstTransformation == True 
     setStage(2)
   else
     setStage(10)
   endif
 else
   Utility.Wait(10)
   setStage(0)
 endif


EndFunction

Edited by DieBySword
Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.

×
×
  • Create New...