fix a bunch of genesis lua scripts
This commit is contained in:
parent
fa0db935e3
commit
206b00252f
|
@ -17,12 +17,12 @@ local draw_eh = true -- Set to false to turn off enemie hitboxes
|
|||
local infhp = true --Set to false to turn off infinite HP for the player
|
||||
|
||||
|
||||
local playerbase = 0xFFB300
|
||||
local playerbase = 0xB300
|
||||
local face = 0x2C
|
||||
local php = 0xFF9C11
|
||||
local weapon = 0xFFB480
|
||||
local spear = 0xFF9CA7
|
||||
local enemybase = 0xFFB380
|
||||
local php = 0x9C11
|
||||
local weapon = 0xB480
|
||||
local spear = 0x9CA7
|
||||
local enemybase = 0xB380
|
||||
|
||||
local xcord = 0x18
|
||||
local ycord = 0x1C
|
||||
|
@ -66,7 +66,7 @@ end
|
|||
|
||||
local function player_projectiles()
|
||||
|
||||
local start = 0xFFC900
|
||||
local start = 0xC900
|
||||
local base
|
||||
local x
|
||||
local y
|
||||
|
|
|
@ -1,22 +1,22 @@
|
|||
--Author Pasky13
|
||||
|
||||
-- Player
|
||||
local pbase = 0xFF1CD4
|
||||
local pbase = 0x1CD4
|
||||
local px = pbase + 0x19
|
||||
local py = pbase + 0x1D
|
||||
|
||||
local camx = 0xFF1BC5
|
||||
local camy = 0xFF1BC9
|
||||
local camx = 0x1BC5
|
||||
local camy = 0x1BC9
|
||||
|
||||
--Player projectiles
|
||||
|
||||
local projbase = 0xFF1D34
|
||||
local projbase = 0x1D34
|
||||
|
||||
--Enemies
|
||||
local ebase = 0xFF21B4
|
||||
local ebase = 0x21B4
|
||||
|
||||
--Bosses
|
||||
local bbase = 0xFF35F4
|
||||
local bbase = 0x35F4
|
||||
|
||||
--Text scaler
|
||||
local xs
|
||||
|
|
Loading…
Reference in New Issue