[Request] need help to fix the hack to revive in kingsroad
need help to fix the hack to revive in kingsroad

need help to fix the hack to revive in kingsroad

This code is for the game in android, but I use the dll to interpret where the codes are in swf, this code was what made it always revive, just doing the push byte change to 24 00, and it worked, now they put some protection that when you click the revive button nothing happens.

 public static void OnLevelComplete(RxQuest_LevelComplete msg)
        {
            RxQuestEvent rxQuestEvent = null;
            if (msg.status == 4)
            {
                RxQuestManager.s_levelFailed = true;
                RxUI.OnLevelComplete(msg.failedQuest);
                if (RxQuestManager.s_eventDispatcher.hasEventListener("levelFailed"))
                {
                    rxQuestEvent = new RxQuestEvent("levelFailed", false, false);
                    RxQuestManager.s_eventDispatcher.dispatchEvent(rxQuestEvent);
                }
            }
            else if (msg.status == 2)
            {
                RxQuestManager.s_levelComplete = true;
                RxUI.OnLevelComplete(null);
                if (RxQuestManager.s_eventDispatcher.hasEventListener("levelComplete"))
                {
                    rxQuestEvent = new RxQuestEvent("levelComplete", false, false);
                    RxQuestManager.s_eventDispatcher.dispatchEvent(rxQuestEvent);
                }
            }
        }


-------------------


 public virtual bool IsReviveDateValid()
        {
            return this.m_isReviveDateValid;
        }