Help! not working...

BlitzPlus Forums/BlitzPlus Programming/Help! not working...

aab(Posted 2004) [#1]
This Works:


But this doesnt:




Why Not???

{ie: The Values in the Bank that are read are not the ones put in}


ford escort(Posted 2004) [#2]
you're using short with an offset of 1 shorts are 2 bytes long so you'll have to use an offset of 2 and maybe recalculate the bank size (x2)

peekbyte => 1 byte long offset in the bank 1
peekshort => 2 bytes long offset in the bank 2
peekint => 4 bytes long offset in the bank 4
peekfloat => 4 bytes long offset in the bank 4

hope it help :)


aab(Posted 2004) [#3]
i should be slapped for that!
Thanks!