WanderingScholar Posted October 31 Posted October 31 (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 October 31 by WanderingScholar Quote
Recommended Posts
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.