I'm using Nick's code from here http://www.gammon.com.au/forum/?id=8847 and modifying it for my own.. He's got lines like this in his code..
k = { range = "+32 to +41", colour = "darkmagenta", },
but the colors I want to use are in RGB format, can I change it to this?
k = { range = "+32 to +41", colour = 255,255,255 },
-- also --
I want to change the message the mud gives me completely, from:
MobName would crush you like a bug!
to:
MobName is 21 - 32 levels higher then you.
with a specific color, in this case, "255,192,0".
It won't let me post all the code, says this message is too long.
This is a work in progress.. but I don't know where to find the info I need. The Lua site to too much information, and if it's here I can't find it.
k = { range = "+32 to +41", colour = "darkmagenta", },
but the colors I want to use are in RGB format, can I change it to this?
k = { range = "+32 to +41", colour = 255,255,255 },
-- also --
I want to change the message the mud gives me completely, from:
MobName would crush you like a bug!
to:
MobName is 21 - 32 levels higher then you.
with a specific color, in this case, "255,192,0".
It won't let me post all the code, says this message is too long.
This is a work in progress.. but I don't know where to find the info I need. The Lua site to too much information, and if it's here I can't find it.