Official new patch topic 4.0.1
Re: Official new patch topic 4.0.1
btw, lisa implemented use of phirius potions, but they dont get used O.o
another strange thing, i use a pet, just a simple egg thingy, but when he gets in a fight, bot starts acting very strange, tries to get to waypoints out of reach etcetera.
Botje
another strange thing, i use a pet, just a simple egg thingy, but when he gets in a fight, bot starts acting very strange, tries to get to waypoints out of reach etcetera.
Botje
Re: Official new patch topic 4.0.1
Never mind this post. It was fixed while I was at work.
Scout/Knight/Rogue 70/66/66
Re: Official new patch topic 4.0.1
Oops, sorry.Blackt3ars wrote:Updated to Rev 628 got Player.Lua Error
On Line 3482
'=' expected near '=='

- Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
- I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
- How to: copy and paste in micromacro
________________________
Quote:- “They say hard work never hurt anybody, but I figure, why take the chance.”
- Ronald Reagan
Re: Official new patch topic 4.0.1
Ok after this latest revision I have an issue with Party.lua .... when I load up partyhealer option for a waypoint "No information can be found for any party member" now.
Re: Official new patch topic 4.0.1
I've updated the address in the userfunction.nokirk wrote:has anybody already found the new addresses ofandCode: Select all
craftingCountPtr
? They are used in craftitem userfunction and don't work atm.Code: Select all
craftingCount_offset
http://www.solarstrike.net/phpBB3/viewt ... 272#p20272
You can download it or just change the address to 0xA1E730.
- Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
- I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
- How to: copy and paste in micromacro
________________________
Quote:- “They say hard work never hurt anybody, but I figure, why take the chance.”
- Ronald Reagan
Re: Official new patch topic 4.0.1
Bojer wrote:Ok after this latest revision I have an issue with Party.lua .... when I load up partyhealer option for a waypoint "No information can be found for any party member" now.
Code: Select all
partyMemberList_address = 0x9E6F38
Remember no matter you do in life to always have a little fun while you are at it 
wiki here http://www.solarstrike.net/wiki/index.php?title=Manual

wiki here http://www.solarstrike.net/wiki/index.php?title=Manual
Re: Official new patch topic 4.0.1
I figured it was something like that.lisa wrote:Bojer wrote:Ok after this latest revision I have an issue with Party.lua .... when I load up partyhealer option for a waypoint "No information can be found for any party member" now.hasn't been updated with a new address, it still has address from 4.0.0 seems it got missed.Code: Select all
partyMemberList_address = 0x9E6F38
Re: Official new patch topic 4.0.1
Hi, hows all.- I updated the bot and get this error on player.lua
Line 2579: Invalid Addres.... ideas?
Line 2579: Invalid Addres.... ideas?
Re: Official new patch topic 4.0.1
Forgot about that one. I couldn't find it for some reason. Maybe I'll give it another go.lisa wrote:hasn't been updated with a new address, it still has address from 4.0.0 seems it got missed.Code: Select all
partyMemberList_address = 0x9E6F38
- Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
- I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
- How to: copy and paste in micromacro
________________________
Quote:- “They say hard work never hurt anybody, but I figure, why take the chance.”
- Ronald Reagan
Re: Official new patch topic 4.0.1
yeah I always struggled on finding this address, not sure why. I can't find the instructions I wrote out for it last patch either =(
Remember no matter you do in life to always have a little fun while you are at it 
wiki here http://www.solarstrike.net/wiki/index.php?title=Manual

wiki here http://www.solarstrike.net/wiki/index.php?title=Manual
Re: Official new patch topic 4.0.1
I think I've found it but it's completely changed
Base 9E6CFC
offset 0,14
size 1C
I'll see if I can get the bot working with these values.
Base 9E6CFC
offset 0,14
size 1C
I'll see if I can get the bot working with these values.
- Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
- I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
- How to: copy and paste in micromacro
________________________
Quote:- “They say hard work never hurt anybody, but I figure, why take the chance.”
- Ronald Reagan
Re: Official new patch topic 4.0.1
Looks like I've been confusing myself. I've been looking for the party guids because that's the comment on my CE pointer but it's supposed to yeild their name.
Starting again.
Starting again.
- Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
- I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
- How to: copy and paste in micromacro
________________________
Quote:- “They say hard work never hurt anybody, but I figure, why take the chance.”
- Ronald Reagan
Re: Official new patch topic 4.0.1
Ok partyMemberList_address = 0x9E8F90. I'll just look around to see if there is anything else I can quickly fix before committing.
Edit: Committed in rev 630.
Edit: Committed in rev 630.
- Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
- I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
- How to: copy and paste in micromacro
________________________
Quote:- “They say hard work never hurt anybody, but I figure, why take the chance.”
- Ronald Reagan
Re: Official new patch topic 4.0.1
I wrote a romscript-version not very long ago
and yes there are 2 globals ^^
edit: name is local
Code: Select all
function GetPartyMemberName(_number)
local function updatePM()
PMTable = {}
local numPM = RoMScript("GetNumPartyMembers()")
if numPM > 0 then
for i=1,numPM do
local name = RoMScript("GetPartyMember("..i..")")
table.insert(PMTable,i, name);
end
end
updatetimerPM = os.time()
end
--refresh partymembersTable every 30 seconds
if not PMTable or (os.difftime(os.time(), updatetimerPM ) > 30) then updatePM() end
return PMTable[_number]
end
function GetPartyMemberAddress(_number)
return player:findNearestNameOrId(GetPartyMemberName(_number))
end
edit: name is local
Last edited by SpiralV on Thu Jul 28, 2011 11:59 am, edited 1 time in total.
Re: Official new patch topic 4.0.1
I've always thought it was funny we use the name to get the address but for everything else we use the address to give us the name(+ anything else)
Remember no matter you do in life to always have a little fun while you are at it 
wiki here http://www.solarstrike.net/wiki/index.php?title=Manual

wiki here http://www.solarstrike.net/wiki/index.php?title=Manual
Re: Official new patch topic 4.0.1
Is there anyway to turn off the speed hack?nassekova wrote:Same problem still remains even with the newest millersranch.xml . Manually i can take as many of those feedbags and they work but when bot tries it errors every now and then and it ruins the whole macro.
EDIT: Seems that the version with optimized and speedhack works fine so i will be using it instead. Thanks anyways
Cancel!, took time to read the actual xml file and saw I can change speed.... soz

Re: Official new patch topic 4.0.1
Fixed in 631botje wrote:btw, lisa implemented use of phirius potions, but they dont get used O.o
Botje
Code: Select all
MACRO: Using HP potion 8667/25790 (33%): Phirius Potion - Type B (qty 25)
Remember no matter you do in life to always have a little fun while you are at it 
wiki here http://www.solarstrike.net/wiki/index.php?title=Manual

wiki here http://www.solarstrike.net/wiki/index.php?title=Manual
-
- Posts: 210
- Joined: Wed Oct 27, 2010 11:34 am
Re: Official new patch topic 4.0.1
This crashed my client... old one seems to work fine.lisa wrote:adding swimhack here with updated addresses.
Re: Official new patch topic 4.0.1
Hmm all I did was update the addresses.
The swimhack before patch shouldn't work at all. addresses have changed.
Make sure you move or delete the old addon_ or it will conflict with the new userfunction_
The swimhack before patch shouldn't work at all. addresses have changed.
Make sure you move or delete the old addon_ or it will conflict with the new userfunction_
Remember no matter you do in life to always have a little fun while you are at it 
wiki here http://www.solarstrike.net/wiki/index.php?title=Manual

wiki here http://www.solarstrike.net/wiki/index.php?title=Manual
userfunction_gmmonitor.lua:47: attempt to call field 'contai
I wasn't sure if this should be posted here or the GMdetect thread since GMdetect seemed to work fine until 4.0.1. But I ran a bot overnight, and I woke up to a dead char. Sometime during the night, the bot encountered the following error, and exited to shell:
I've been updating so many things (v628, v629, userfunctions, etc.) that I'm not sure exactly where am I in terms of revisions of which files. Anyone else see this?
Code: Select all
...scripts/rom/userfunctions/userfunction_gmmonitor.lua:47: attempt to call fiel
d 'contains' (a nil value)
Who is online
Users browsing this forum: No registered users and 1 guest