Phasor is a server extension for Halo PC which focuses on giving the end-user the ability to deeply customize gameplay. Phasor does this via its scripting system, which uses the Lua language. Scripters are able to react to and change many different aspects of the game.
MIT License
19
stars
9
forks
source link
Readstring only returns first character of string #55
Taken from the addresses page,
local gametype_name = readstring(0x671340, 0x0, 0x2C)
The above gives a syntax error since readstring only takes two arguments now instead of three, but when I do this:
local gametype_name = readstring(0x671340, 0x2C)
It only returns the first character of the gametype name.