xeno tactic2 unlock mission4-6, play on local hack mod

modification xt2.swf with FFDEC(JPEXS Free Flash Decompiler)
how to unlock stage4,stage5,stage6

feature

unlock all mission ! everytime , you can play all mission

test environment

unlock mission 2,3

  1. open swf file with FFDEC
  2. click left tree:scripts> scripts/Definesprite(620)/frame1/PlaceObject2(609-611)
  3. click button"edit action script",change like a table
  4. click save(small), save(big)

ex.609

before after
onClipEvent(load){
   var §\x01§ = 52;
   var §\x0f§ = 1;
   if(_root.biscuit.data.mission1 != undefined)
   {
      _visible = false;
   }
   else
   {
      _visible = true;
   }
}
onClipEvent(load){
   var §\x01§ = 52;
   var §\x0f§ = 1;
   _visible = false;
}

unlock mission 4,5,6

  1. open swf file with FFDEC
  2. click left tree:scripts>Definesprite(620)/frame1/PlaceObject2(615-619)
  3. click button"edit action script",change like a table
  4. click "save"(small), "save"(big)

ex.615

before after
onClipEvent(load){
   var §\x01§ = 958;
   var §\x0f§ = 1;
   if(!_root.demo)
   {
      if(_root.biscuit.data.mission3 != undefined)
      {
         _visible = false;
      }
      else
      {
         _visible = true;
      }
   }
   else
   {
      this.gotoAndStop(2);
   }
}
onClipEvent(load){
   var §\x01§ = 958;
   var §\x0f§ = 1;
   _visible = false;
}

skip opening demo

scripts/frame3/PlaceObject2(946)Depth:606//CLIPACTIONRECORD onClipEvent(load)

before after
if(_root.demo != true) if(_root.demo != false)

日本語

FFDECで改造します
JAVA実行環境が必要です
変更した後、2か所の大小saveボタンをクリックします
起動時のスプラッシュ(デモ)をなくす改造もできます

old modification

old1
old2