Search found 12 matches

by Gulron
Mon Mar 23, 2009 7:50 pm
Forum: Memory editing software
Topic: [Tutorial] Finding pointers & offsets (Cheat Engine)
Replies: 35
Views: 171854

Re: [Tutorial] Finding pointers & offsets (Cheat Engine)

I have been taking apart your Shaiya Bot for reference and I have come across a memory address I don't understand.

Code: Select all

playerptr_addr = 0x00825CB4;
I think I understand the HP and MaxHP offsets but not the playerptr_addr. Also, what exactly is the offset?

Thanks
by Gulron
Mon Mar 02, 2009 5:15 pm
Forum: Packet Editors
Topic: Where to get WPE
Replies: 25
Views: 24040

Re: Where to get WPE

After the file being quarantined ten times I have finally got it to work. Looks like a nifty program to tinker with.

Thanks
by Gulron
Sat Jan 03, 2009 4:54 pm
Forum: MicroMacro general & support
Topic: Gulron's Noob Questions Thread!
Replies: 15
Views: 5052

Re: Gulron's Noob Questions Thread!

Thanks
by Gulron
Sat Jan 03, 2009 12:02 pm
Forum: MicroMacro general & support
Topic: Gulron's Noob Questions Thread!
Replies: 15
Views: 5052

Re: Gulron's Noob Questions Thread!

In Chapter 2.5 of Programming in Lua it teaches you about tables and I am a little confused. Here is the snippet of coding they use.

Code: Select all

   a = {}
    for i=1,10 do
      a[i] = io.read()
    end
My question is, where does the 'i' come from?
by Gulron
Thu Jan 01, 2009 11:13 pm
Forum: MicroMacro general & support
Topic: Gulron's Noob Questions Thread!
Replies: 15
Views: 5052

Re: Gulron's Noob Questions Thread!

Thank you Zer0! Much appreciation for your tips.

I'm on Chapter 2 of http://www.lua.org/pil/index.html so far and have been enjoying learning about Lua.

Thanks again,
Gulron
by Gulron
Thu Jan 01, 2009 9:04 pm
Forum: Runes of Magic
Topic: RoM bot
Replies: 2213
Views: 818062

Re: RoM bot

I've already got a tutorial for that here . It requires at least some knowledge with Cheat Engine. Just find the address to your character's HP. Then find the pointer to it. Then find the pointer to the pointer to your HP. It shouldn't be necessary for much longer. Once some things are worked out f...
by Gulron
Thu Jan 01, 2009 9:03 pm
Forum: MicroMacro general & support
Topic: Gulron's Noob Questions Thread!
Replies: 15
Views: 5052

Re: Gulron's Noob Questions Thread!

zer0 wrote:printf is used because Elverion finds it easier to remember and shorter. However it's just a function reference to string.format() which can be located here:
http://lua-users.org/wiki/StringLibraryTutorial
Whoa! Not ready for that yet.
by Gulron
Tue Dec 30, 2008 6:03 pm
Forum: MicroMacro general & support
Topic: Gulron's Noob Questions Thread!
Replies: 15
Views: 5052

Re: Gulron's Noob Questions Thread!

Okay I see. printf() gives more leeway for printing scripts while print() just prints out plain text.
by Gulron
Tue Dec 30, 2008 2:40 pm
Forum: MicroMacro general & support
Topic: Gulron's Noob Questions Thread!
Replies: 15
Views: 5052

Re: Gulron's Noob Questions Thread!

Administrator wrote:%d prints a number in numerical form. %X prints a number in capitol hex form (and %x for lowercase).
So why the "Ox" at the beginning?
by Gulron
Tue Dec 30, 2008 11:14 am
Forum: MicroMacro general & support
Topic: Gulron's Noob Questions Thread!
Replies: 15
Views: 5052

Re: Gulron's Noob Questions Thread!

"%d" will take the first variable after the statement, so what is repeating the variable doing?
by Gulron
Mon Dec 29, 2008 10:01 pm
Forum: MicroMacro general & support
Topic: Gulron's Noob Questions Thread!
Replies: 15
Views: 5052

Re: Gulron's Noob Questions Thread!

There was no .tag file included in the RoM bot or any other that I am aware of, so it must be something associated with the software you are using. In all reality, the file extensions don't mater. You do not need to name your files with the .lua extension to run them through MicroMacro. Okay, thank...
by Gulron
Mon Dec 29, 2008 8:15 pm
Forum: MicroMacro general & support
Topic: Gulron's Noob Questions Thread!
Replies: 15
Views: 5052

Gulron's Noob Questions Thread!

So after reading about MicroMacro and actually using it for myself I am really intrigued. After reading a little about Lua and testing out a few simple Lua scripts in MicroMacro it has encouraged me to begin learning the programming language Lua so I can create macros for MicroMacro. I have no real ...