Jump to content

Need help solving this


Recommended Posts

Posted (edited)

SCS mages in my game often fail to resolve their Wishes.

The Wish spell in SCS works by summoning one of several genies, each corresponding to a different wish outcome.

The genies execute this outcome through a single creature script like this:

Spoiler
IF
    OnCreation()
THEN
    RESPONSE #100
        Wait(1)
        DisplayStringHead(LastSummonerOf(Myself),107970)  // I wish for time itself to become my servant!
        Wait(1)
        DisplayStringHead(Myself,107971)  // Time is now your ally, my master!
        ActionOverride(LastSummonerOf(Myself),ReallyForceSpellRES("dw#wish3",Myself))  // Time Stop
        ReallyForceSpell(Myself,POOF_GONE)  // SPIN660.SPL (Teleport)
END

Sometimes it resolves and other times it doesn't. My best guess, after countless experiments, is that there's an issue with ActionOverride() or at least the way it's used here to cast this spell.

Here is a post made years ago from another user with likely the same problem.

I'm looking for any advice or possible workarounds. 

Thanks

 

Edited by WanderingScholar

Join the conversation

You are posting as a guest. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...