Page 1 of 1

counter / timer public event

Posted: Thu Dec 08, 2011 5:25 am
by MinMax
Is it possible to check the counter and timer for the public events in the new zone?
Significant would be the counter. You know, you lose your points if you complete public quest and the counter is over 6000 (or stopped)

Re: counter / timer public event

Posted: Thu Dec 08, 2011 5:40 am
by lisa
Pretty good chance the timer value can be gotten from memory.
I haven't played around in the new map much yet so I haven't had a look.

Re: counter / timer public event

Posted: Thu Dec 08, 2011 6:12 am
by MinMax
Unfortunately i dont know how to do a memory search of a permanent changing variable like the public counter.
I will take a look in your guide. I hope i will find something for this.

Re: counter / timer public event

Posted: Thu Dec 08, 2011 7:42 am
by lisa
If you are going to have a look I would suguest using the between values instead of exact value for searching.

So if the count is say 4600, then do a from 4300 to 5000
and then you can narrow it down more in the next search.
After using next search a few times you should be able to get the address that has the count.
Then just a matter of working out if it a static address or not and going from there.

Re: counter / timer public event

Posted: Fri Dec 16, 2011 9:57 pm
by lisa
Finally got a chance to have a look, this is what you want.

Code: Select all

memoryReadIntPtr( getProc(),0xA23030, {0x9C,0x10,0x4})
They use the same address for the count going up to 6000 and also the time counting down until event starts.
time is in ms
So 60000 is 1 minute.
Determining if the value means count or time could be an issue, only saving grace is under 6000 is like 1 second so it wouldn't be less then 6000 for long if it represents timer.
So make sure to do a check is the value is less then 6000.

Something like

Code: Select all

local _count = memoryReadIntPtr( getProc(),0xA23030, {0x9C,0x10,0x4})
if 6000 > _count then
CompleteQuestByName()
end
So it will only hand in quests if the count is active, you need the quest by name userfunction for that code to work though.
Just an example.

Re: counter / timer public event

Posted: Sat Dec 17, 2011 7:18 pm
by MinMax
I always get the value 270000 with the code below.
It doesnt matter if the event is running or ended.

local _count = memoryReadIntPtr( getProc(),0xA23030, {0x9C,0x10,0x4})
cprintf(cli.lightgreen,"Counter = %s\n", _count)


The short time (15-20seconds of the event running) combined with my poor memoryfind routine are the case i have no advancemet.

Re: counter / timer public event

Posted: Sat Dec 17, 2011 9:13 pm
by lisa
Hmm works fine for me, tried with a few different characters aswell, even a character to low to even do the event.

Code: Select all

Command> local _count = memoryReadIntPtr( getProc(),0xA23030, {0x9C,0x10,0x4}) cprintf(cli.lightgreen,"Counter = %s\n", _count)
Counter = 92906
Command> local _count = memoryReadIntPtr( getProc(),0xA23030, {0x9C,0x10,0x4}) cprintf(cli.lightgreen,"Counter = %s\n", _count)
Counter = 62906
Command> local _count = memoryReadIntPtr( getProc(),0xA23030, {0x9C,0x10,0x4}) cprintf(cli.lightgreen,"Counter = %s\n", _count)
Counter = 22906
Command> local _count = memoryReadIntPtr( getProc(),0xA23030, {0x9C,0x10,0x4}) cprintf(cli.lightgreen,"Counter = %s\n", _count)
Counter = 0
Command> local _count = memoryReadIntPtr( getProc(),0xA23030, {0x9C,0x10,0x4}) cprintf(cli.lightgreen,"Counter = %s\n", _count)
Counter = 154
It will only work while you are in the zone though.

Re: counter / timer public event

Posted: Tue Jan 31, 2012 4:23 pm
by miesermetzler
So far, so bad^^ But where i have to put these codes? In Profile or at the Wayponits? My Problem is i work like Dr.Frankenstein^^ i take part from here and there and make my own WP´s. But i must see it "live" in Action and read the MM output to understand how its works. Like the Dalanis Concept. I´ve copied the first Waypoints from the first reply and look what the bot does and where the problems be. lisa should remind my problems with my tank and mage checkup in the grp. So could anyone post his/ her waypoints for red shell farming? Dont worry i´ll make my own based on the informations i will get from the post. But i need a basic information with i have to start with -.-

Re: counter / timer public event

Posted: Tue Jan 31, 2012 8:55 pm
by lisa
The address has changed since last patch anyway, so going to need to find it again lol

Re: counter / timer public event

Posted: Tue Feb 07, 2012 4:09 pm
by runnpray
There is msg sent to chat 'Regional event now restarting!' to start the event and then 'Regional event has ended sucessfully!' can those be used as a trigger?

Re: counter / timer public event

Posted: Tue Feb 07, 2012 9:57 pm
by M4gm4
runnpray wrote:There is msg sent to chat 'Regional event now restarting!' to start the event and then 'Regional event has ended sucessfully!' can those be used as a trigger?
i think yes,, with lisa´s madman addon

but i hope that nobody bot´s the new red quests,,, if there are only 2-3 ppl , no chance for all and blocked for all other too.

Re: counter / timer public event

Posted: Sat Feb 18, 2012 1:26 pm
by Romplayer
any update to the memory address for this?
i was thinking of downloading the programs to find just this address. and trying the screenshot method. idk any updates would be appreciated

Re: counter / timer public event

Posted: Sun Mar 11, 2012 6:02 am
by Lordnika
we still w8ing some news with the timer/count on red quests :)
or how we can get it
vry usefull ..for me at least

Re: counter / timer public event

Posted: Wed Mar 28, 2012 5:44 am
by Lordnika
were i can dl lisa's Masman addon !?
still need some help with this timer

Re: counter / timer public event

Posted: Wed Mar 28, 2012 6:29 am
by lisa
A forum search for "madman" got these,
http://www.solarstrike.net/phpBB3/viewt ... man#p33646

http://www.solarstrike.net/phpBB3/viewt ... man#p32603

is it really that hard for people to do a forum search?

Re: counter / timer public event

Posted: Wed Mar 28, 2012 7:09 am
by rock5
lisa wrote:is it really that hard for people to do a forum search?
Not if you spell "masman". :)

Re: counter / timer public event

Posted: Tue Apr 10, 2012 10:24 pm
by Lordnika
dont hate me for beeing sutch and anoying creature...
i have my rights u know :)

Re: counter / timer public event

Posted: Thu Apr 12, 2012 9:27 am
by Lordnika
i try to use madman addon on public quests but it dosent work :/