New EggPet class.
Re: New EggPet class.
please we need the solution of the bot in the miller's ranch, the mobs kill standart bot is already running, now need this, please help
Re: New EggPet class.
You're off topic. This thread is about the EggPet Class.nerf wrote:please we need the solution of the bot in the miller's ranch, the mobs kill standart bot is already running, now need this, please help
- 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: New EggPet class.
rock5 wrote:You're off topic. This thread is about the EggPet Class.nerf wrote:please we need the solution of the bot in the miller's ranch, the mobs kill standart bot is already running, now need this, please help
There are some related post on the subject?
Re: New EggPet class.
Hi,
sorry for noob question but i tried to find the script and couldn't and don't get how it works.
I would like to have a pet which is farming ressources alone. Can you give me the link to this script or paste it here?
If it's already included somewhere, i didn't get how to run it.
Thanks in advance for help.
sorry for noob question but i tried to find the script and couldn't and don't get how it works.
I would like to have a pet which is farming ressources alone. Can you give me the link to this script or paste it here?
If it's already included somewhere, i didn't get how to run it.
Thanks in advance for help.
Re: New EggPet class.
The EggPet class is part of rombot. To use it you need to set up the eggpet settings in your profile. Then when you are running any waypoint file it will use your pet/pets as you've set them up in your profile.noobot wrote:Hi,
sorry for noob question but i tried to find the script and couldn't and don't get how it works.
I would like to have a pet which is farming ressources alone. Can you give me the link to this script or paste it here?
If it's already included somewhere, i didn't get how to run it.
Thanks in advance for help.
http://www.solarstrike.net/wiki/index.p ... _-_Options
- 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: New EggPet class.
I ran across a few problems using the eggpet enabled and was wondering if there was a fix for them. 1. It will try to summon the eggpet while in combat, resulting in getting beatdown by mobs for an unreasonable amount of time. 2. It will feed an eggpet after dying and lay there without ressing.
Thanks.
Thanks.
Re: New EggPet class.
Why does it try to summon the pet during combat? Is it when the pet dies during combat? I would think that would hardly ever happen. I guess we could add a combat check.
If we fix this I expect the second problem might fix itself. Does it try to feed the pet when it dies or even when it doesn't die?
If we fix this I expect the second problem might fix itself. Does it try to feed the pet when it dies or even when it doesn't die?
- 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: New EggPet class.
same problems i have been having.
it tries to call pet when i die, thus not ressing my char.
and first problem i have too xd
something i do see sometimes too, when my pet fights, bot goes haywire, it doesnt help pet, but tries to go on his way, but waypoints dont get followed anymore O.o
Botje
it tries to call pet when i die, thus not ressing my char.
and first problem i have too xd
something i do see sometimes too, when my pet fights, bot goes haywire, it doesnt help pet, but tries to go on his way, but waypoints dont get followed anymore O.o
Botje
Re: New EggPet class.
Pet doesn't die but it will unsummon pet to feed it.
Re: New EggPet class.
So the problem is it's feeding the pet during combat?
Thinking about it, returning the pet and feeding it isn't a problem as it's very fast and can't be interrupted. Resommoning it is the problem which his what I think you guys are saying.
I just checked the CEggPet:Summon() function and it already has a check to see if you are battling. But it looks like its designed to continue trying to summon the pet after the fight. If you die during that fight it gets stuck in the loop trying to feed the pet. I think just checking to see if you are alive should fix it. Could you try the following?
Change line 218 of eggpet.lua toand let me know how it goes.
Thinking about it, returning the pet and feeding it isn't a problem as it's very fast and can't be interrupted. Resommoning it is the problem which his what I think you guys are saying.
I just checked the CEggPet:Summon() function and it already has a check to see if you are battling. But it looks like its designed to continue trying to summon the pet after the fight. If you die during that fight it gets stuck in the loop trying to feed the pet. I think just checking to see if you are alive should fix it. Could you try the following?
Change line 218 of eggpet.lua to
Code: Select all
while self.EggId > 0 and self.Summoned == false and player.Alive and player.HP > 0 do
- 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: New EggPet class.
no, the problem is it's trying to summon the pet while in combat. the pet is getting summoned not because it died but it was unsummoned so that it could be fed. i'll edit the code and see how it works.
ty
ty
Re: New EggPet class.
I understood that.
The feeding of a pet has 3 parts, returning the pet, feeding the pet and resummoning the pet. The whole process shouldn't start while in combat so I'm assuming it starts fighting just after starting the feeding process. The first 2 steps shouldn't be a problem because they happen instantly and can't be interrupted. The problem is if it is in combat when it's trying to resummon the pet and the character dies, then it will get stuck in a loop trying to feed the pet. The change I suggested above should stop it from trying to summon the pet and allow the bot to continue.
The feeding of a pet has 3 parts, returning the pet, feeding the pet and resummoning the pet. The whole process shouldn't start while in combat so I'm assuming it starts fighting just after starting the feeding process. The first 2 steps shouldn't be a problem because they happen instantly and can't be interrupted. The problem is if it is in combat when it's trying to resummon the pet and the character dies, then it will get stuck in a loop trying to feed the pet. The change I suggested above should stop it from trying to summon the pet and allow the bot to continue.
- 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: New EggPet class.
also, when the pet is summoned and i die, it will feed the pet then continue trying to cast skills while i am still dead and not res. this is with the edited line above. i haven't run into the problem with summoning pet in combat yet, i'll keep you updated.
thanks
thanks
Re: New EggPet class.
Are you saying it tries to feed the pet after you died? What skills does it try to cast when it's dead? Maybe if you pasted a copy of the micromacro output from when this happened might be useful.
- 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: New EggPet class.
it does feed the pet after i'm dead. then it'll continue to try casting spells. atm i'm playing k/p so it was spamming urgent heal nonstop while i was dead.
Re: New EggPet class.
The bot should detect that you are dead when normally casting skills. Is it possible you added some code somewhere that casts heal until you are healed so it gets stuck in a loop? Maybe in one of the profile events?
- 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: New EggPet class.
when i reported the error no, it was just in the regular list. but since then i've added my heals to the onskillcast section and the error happened there as well.
note: regenerate is still not in the onskillcast section, it is only in the regular section for skills
note: regenerate is still not in the onskillcast section, it is only in the regular section for skills
Re: New EggPet class.
Are you using partyhealer.xml ??
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: New EggPet class.
Can we have a look at your onskillcast section?
- 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
Who is online
Users browsing this forum: Ahrefs [Bot] and 0 guests