Page 38 of 53

Re: Version 7.4.0.2897 progress

Posted: Sun Aug 23, 2020 2:15 pm
by Administrator
For that memdatabase error, it looks like the problem is with whatever function made a call to CMemDatabase:getAddress(). Once this error happens, a stacktrace should be added to log.txt which contains additional information that is not printed to the console window. If you can get it to happen again, could you open up log.txt and copy/paste the error for me?
Tintenkiller96 wrote: Sat Aug 22, 2020 7:38 pm Hi,

does someone has a problem with player:object()?

I get the error no Element found

for example for Helping Growth player:object(112976) when staying close the cleaning cristal
player:object is not a method. Did you perhaps mean player:target_Object()? My best guess is the evaluation function/closure. Maybe try:

Code: Select all

player:target_Object(112976, 1, false, false, false);
Alternatively, you can try:

Code: Select all

player:target_NPC(112976);

Re: Version 7.4.0.2897 progress

Posted: Wed Aug 26, 2020 12:27 pm
by Tintenkiller96
Hi,

exactly im using this function but the result is that he can not find the Crystal for Cleaning while staying near it

queststate = getQuestStatus("Wachstumshilfe")
if queststate == "incomplete" then
player:target_Object(112976,500);
yrest(3000);
__WPL:setWaypointIndex(__WPL:findWaypointTag("Item"));
end

that is my code at the waypoint when he is near the crystal
I also tried
on load just the player:target_Object(112976,500); function and he still says target not found.

Re: Version 7.4.0.2897 progress

Posted: Wed Aug 26, 2020 3:47 pm
by Andre235
Is it the right id????

Try

Code: Select all

player:target_Object(112976)
yrest(500);
Or

Code: Select all


player:target_Object(112976)
yrest(500);
Attack()
Or harvest it?

Code: Select all

player:harvest(112976);

I looked in the runes database. There is the id 112976 an NPC!!!!

Code: Select all

player:target_NPC(112976)
yrest(500)(
Try try try :oops:

Re: Version 7.4.0.2897 progress

Posted: Thu Aug 27, 2020 7:46 am
by Tintenkiller96
Oh, i see thats explains a lot :D but i used the Get_Object_Id.bat with the mouseover thats why I felt pretty safe about the ID for this Object.

And now I understand why NPC ;) even when using the OBJECT ID reader :D Big thanks!!

Layer 8 Problem nothing wrong about the bot at my point!!!

Okay too early to celebrate :D But hope its just a fail by me.
I tried all the possibilities you mentionted at the spott but the error is: "error closing parser: no element found"
<onLoad>
player:target_Object(112976);
player:target_NPC(112976);
player:harvest(112976);
yrest(500)
</onLoad>

Re: Version 7.4.0.2897 progress

Posted: Thu Aug 27, 2020 3:27 pm
by Andre235
Please try only one of this options. If you get an error, you can’t be sure, wich of the three lines causes the error...

In my opinion the

Code: Select all

player:target_NPC(112976)
Should work. But you have to write the right name of this function (you wrote:

Code: Select all

player:NPC(112976)
That is maybe the Reason for your latest error...)

Re: Version 7.4.0.2897 progress

Posted: Thu Aug 27, 2020 3:33 pm
by Tintenkiller96
I just did it for you to see which one i used i tried them one by one. Copy Pasta is not always a good option but i had the right one in the code.


FIXED bad coding by me.

Re: Version 7.4.0.2897 progress

Posted: Mon Aug 31, 2020 11:37 am
by Administrator
I added some code the other day that should stabilize the camera while botting. That is, the camera should not zoom out really far when fighting enemies. Can anyone confirm that is working well for them, or whether new problems have arisen from this change? How about click-to-cast skills (such as Thunderstorm); do those work better now?

Re: Version 7.4.0.2897 progress

Posted: Tue Sep 01, 2020 7:53 am
by ThulsaDoom
Administrator wrote: Mon Aug 31, 2020 11:37 am I added some code the other day that should stabilize the camera while botting. That is, the camera should not zoom out really far when fighting enemies. Can anyone confirm that is working well for them, or whether new problems have arisen from this change? How about click-to-cast skills (such as Thunderstorm); do those work better now?
Thank you for continuing to work on improving RoMBot.

Regarding click to cast skills, the same problem continues, the area is located where the cursor is.
If the mouse cursor is outside the window where the client is running, you don't get the desired effect.
Suggestion: place the area and the execution click on the position of the first enemy detected.

Concenrning camera position, when following a waypoint, when there is a slope on the road, the camera is placed just above the character, and it is not placed in the good position until we find a climb on the road.

Re: Version 7.4.0.2897 progress

Posted: Fri Sep 04, 2020 2:57 pm
by Alcorne
Im getting an error when starting the bot:

Code: Select all

 functions.lua:2664: bad argument #1 to 'memoryReadIntPtr' ((null))

Re: Version 7.4.0.2897 progress

Posted: Sat Sep 05, 2020 1:43 pm
by Administrator
Alcorne wrote: Fri Sep 04, 2020 2:57 pm Im getting an error when starting the bot:

Code: Select all

 functions.lua:2664: bad argument #1 to 'memoryReadIntPtr' ((null))
I'm not able to reproduce that. When did this start happening for you?

Re: Version 7.4.0.2897 progress

Posted: Sat Sep 05, 2020 2:36 pm
by Alcorne
Administrator wrote: Sat Sep 05, 2020 1:43 pm
Alcorne wrote: Fri Sep 04, 2020 2:57 pm Im getting an error when starting the bot:

Code: Select all

 functions.lua:2664: bad argument #1 to 'memoryReadIntPtr' ((null))
I'm not able to reproduce that. When did this start happening for you?

Just yesterday, right after I downloaded the new version and ran the github thing.

Re: Version 7.4.0.2897 progress

Posted: Sun Sep 06, 2020 3:13 pm
by Administrator
Alcorne wrote: Sat Sep 05, 2020 2:36 pm
Administrator wrote: Sat Sep 05, 2020 1:43 pm
Alcorne wrote: Fri Sep 04, 2020 2:57 pm Im getting an error when starting the bot:

Code: Select all

 functions.lua:2664: bad argument #1 to 'memoryReadIntPtr' ((null))
I'm not able to reproduce that. When did this start happening for you?

Just yesterday, right after I downloaded the new version and ran the github thing.
Try redownloading a fresh copy (use the link from the first post in this thread), overwrite all of your own files. Do not run any other updates. Does it still have the same problem?

Re: Version 7.4.0.2897 progress

Posted: Sun Sep 20, 2020 9:28 am
by Sasuke
can someone help witrh this error?
2020-09-20 16:27:23 - [string "..."]:65: attempt to perform arithmetic on field 'charPtrMounted_offset' (a nil value)

Re: Version 7.4.0.2897 progress

Posted: Sun Sep 20, 2020 9:35 am
by Administrator
Looks like that error came out of one of the waypoints that you're using, but that address was removed/renamed. Post a copy of it.

Re: Version 7.4.0.2897 progress

Posted: Sun Sep 20, 2020 10:02 am
by Sasuke
i can't cause i don't have permission for this

Re: Version 7.4.0.2897 progress

Posted: Tue Sep 22, 2020 4:37 am
by silentz
Admin, can you look into this skill?

Warrior/Mage - WARRIOR_LIGHTNING_BURN_WEAPON

I have it in my profile and it would not cast this skill and doesn't say any error as if the skill is not there.



Thanks

Re: Version 7.4.0.2897 progress

Posted: Thu Sep 24, 2020 8:33 am
by Sasuke
in new micromacro we have devtolls interface where inside we have d303 folder.this folder need to be copy in interface folder in rom folder but when you start game you have always item's shop windows open...someone know how to fix it?

Re: Version 7.4.0.2897 progress

Posted: Thu Sep 24, 2020 9:45 am
by ThulsaDoom
Sasuke wrote: Thu Sep 24, 2020 8:33 am in new micromacro we have devtolls interface where inside we have d303 folder.this folder need to be copy in interface folder in rom folder but when you start game you have always item's shop windows open...someone know how to fix it?
Please, see this post:

https://www.solarstrike.net/phpBB3/vie ... ix#p66393

Re: Version 7.4.0.2897 progress

Posted: Thu Sep 24, 2020 8:47 pm
by Administrator
Sorry, I've been unavailable for the last week.

Sasuke: I took a look at the script you posted and I think I've got a quick fix for this. I basically just repurposed similar code out of the speedhack, but have not tested it myself. Please try the attached script and let me know if it works.
JuiceDelivery.xml
(7.09 KiB) Downloaded 121 times
silentz wrote: Tue Sep 22, 2020 4:37 am Admin, can you look into this skill?

Warrior/Mage - WARRIOR_LIGHTNING_BURN_WEAPON

I have it in my profile and it would not cast this skill and doesn't say any error as if the skill is not there.



Thanks
Sorry, the elite and higher level skills are a huge pain for me to do any testing on since I don't have any characters that meet the requirements. I really wish I had a better solution to this, but if you're willing to let me borrow your account briefly then I could probably figure it out.

Re: Version 7.4.0.2897 progress

Posted: Fri Sep 25, 2020 3:45 am
by Sasuke
Administrator wrote: Thu Sep 24, 2020 8:47 pm Sorry, I've been unavailable for the last week.

Sasuke: I took a look at the script you posted and I think I've got a quick fix for this. I basically just repurposed similar code out of the speedhack, but have not tested it myself. Please try the attached script and let me know if it works.
JuiceDelivery.xml

silentz wrote: Tue Sep 22, 2020 4:37 am Admin, can you look into this skill?

Warrior/Mage - WARRIOR_LIGHTNING_BURN_WEAPON

I have it in my profile and it would not cast this skill and doesn't say any error as if the skill is not there.



Thanks
Sorry, the elite and higher level skills are a huge pain for me to do any testing on since I don't have any characters that meet the requirements. I really wish I had a better solution to this, but if you're willing to let me borrow your account briefly then I could probably figure it out.
this is the juice festival event which is located in tergotten, you just need to get there and test it at level 1 too :), cmq it doesn't matter you are always very kind :) I have another question:
1-how to kick offline ppl in party with simple command
2-how can i add at start from bot "/z or /s +word" for autoinvite when dailies up or say to bot click on macro in 1 position of bar
3- how to say to bot leave party when 10 dailies are finish and log out