1. Please be advised of a few specific rules and guidelines for this section.

RELEASED Phase Shift Module v1.32 (p1.2)

Become intangible and ghost through the universe.

  1. ILOVEDUCKS

    ILOVEDUCKS Space Spelunker

    Can you please tell me how you did it? I have a bunch of tech mods installed and I really want update the ones that are broken.
     
  2. Asterio

    Asterio Void-Bound Voyager

    Ofc but u need unpack them all to edit tech's lua scripts
    Example on phase shift: ..\tech\phaseshifttech\phaseshifttech.lua
    Code:
      if self.techType == "head" and args.moves["special"] == 1 and self.lastMoves["special"] ~= 1 then --on and off
        if self.active then
          deactivateGhost()
        elseif not status.resourceLocked("energy") then
          activateGhost()
        end 
      elseif args.moves["special"] == 2 and self.lastMoves["special"] ~= 2 then --togle light/cycle brightness
        setLight(true)
      end
    

    Code:
      if self.techType == "head" and args.moves["special1"] and not self.lastMoves["special1"] then --on and off
        if self.active then
          deactivateGhost()
        elseif not status.resourceLocked("energy") then
          activateGhost()
        end 
      elseif args.moves["special2"] and not self.lastMoves["special2"] then --togle light/cycle brightness
        setLight(true)
      end
    

    After the changes phase shift will work again ;)
     
  3. ILOVEDUCKS

    ILOVEDUCKS Space Spelunker

    Thank you so much!
     
  4. UnknownAccount

    UnknownAccount Void-Bound Voyager

    how does one unpack the tech?
     
  5. ILOVEDUCKS

    ILOVEDUCKS Space Spelunker

  6. Rhyno_SVK

    Rhyno_SVK Scruffy Nerf-Herder

    Really good mod. I used it in 1.1, but in 1.3 doesn´t works by clicking "F", it works only by double clicking "W", please can you release it for 1.3 it will be good :D
     
    rkila709 and notanaccount2 like this.

Share This Page