@@ -49,7 +49,7 @@ function RandoPlayer:Start()
4949 self :AddLabel (self .GhostRatchetLabel )
5050 end
5151
52- self .TeleportToShipLabel = Label :new (" Select : Teleport to ship" , 250 , 340 , 0xC0FFA888 , {GameState .Menu })
52+ self .TeleportToShipLabel = Label :new (" \x13 : Teleport to ship" , 250 , 340 , 0xC0FFA888 , {GameState .Menu })
5353 self :AddLabel (self .TeleportToShipLabel )
5454
5555 self .lobby .universe :AddEntity (self )
@@ -91,7 +91,7 @@ function RandoPlayer:OnGameStateChanged(state)
9191end
9292
9393function RandoPlayer :OnControllerInputTapped (input )
94- if self .gameState == 3 and input & 0x8 ~= 0 and self .lobby .options .cheats .value then
94+ if self .gameState == 3 and input & 0x8 ~= 0 and self .lobby .options .cheats .value then -- R1
9595 self :SetGhostRatchet (200 )
9696 end
9797
@@ -100,7 +100,7 @@ function RandoPlayer:OnControllerInputTapped(input)
100100 self .lobby .universe .replacedMobys :Triangle (self )
101101 end
102102
103- if self .gameState == 3 and input & 0x100 ~= 0 then -- select
103+ if self .gameState == 3 and input & 0x80 ~= 0 then -- square
104104 self :TeleportToShip ()
105105 end
106106end
129129function RandoPlayer :MonitoredAddressChanged (address , oldValue , newValue )
130130 print (" Address " .. address .. " changed from " .. oldValue .. " to " .. newValue )
131131
132- if address == Player .offset .has_raritanium then
133- print (" has_raritanium changed from " .. tostring (oldValue ) .. " to " .. tostring (newValue ))
134- end
135-
136132 if address == Player .offset .goldBolts + 16 * 4 + 1 and newValue == 1 and not self .hasCollectedKaleboGrindrailBolt then
137133 self :OnCollectedGoldBolt (16 , 1 )
138134 self .hasCollectedKaleboGrindrailBolt = true
@@ -222,7 +218,9 @@ function RandoPlayer:TeleportToShip()
222218 elseif level == " Rilgar" then
223219 self :SetPosition (338.32 , 110.8 , 62.7 )
224220 elseif level == " BlargStation" then
225- self :SetPosition (247.950 , 148.68 , 138.3 )
221+ if self .oClass == 0 then -- if not clank
222+ self :SetPosition (247.950 , 148.68 , 138.3 )
223+ end
226224 elseif level == " Umbris" then
227225 self :SetPosition (264.55 , 72.13 , 45.77 )
228226 elseif level == " Batalia" then
0 commit comments