Bot doesn't logout anymore

Runes of Magic/Radiant Arcana (http://www.runesofmagic.com)
Post Reply
Message
Author
ichmagbotsyay
Posts: 70
Joined: Tue Aug 09, 2011 7:43 am

Bot doesn't logout anymore

#1 Post by ichmagbotsyay » Wed Oct 12, 2011 9:44 am

I have the gmdetect userfunction v1.9 and set it to logout when it detects a GM. It worked perfectly for quite a while, but ever since updating the bot to revision 655 it doesn't log out anymore. The MM window says "Logging out because a GM was detected" but it doesn't actually do so. The Bot just gets stuck in the current action: if it is moving, it will continue to move forward and never stops, if it is turning the camera, it will continue to turn it in circles and never stops. Am I the only one having this issue?

I want to change it to actually pause the char (well I want it to logout, but that doesn't seem to work right now, i guess) and not continue to run/turn. If I change my options to the following, will the bot pause forever when a GM comes around, or will it just pause for 10 minutes?

Code: Select all

<option name="GMDETECT"         value="true" />
<option name="GMnearbylogout"      value="true" />
<option name="PAUSEONGM"      value="600" />
<option name="RECALL"         value="true" />

User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: Bot doesn't logout anymore

#2 Post by lisa » Wed Oct 12, 2011 10:05 am

The pause is only for if whispered.

Code: Select all

<option name="GMnearbylogout"      value="true" />
If a GM is within range of you then you logout.

Code: Select all

<option name="PAUSEONGM"      value="600" />
If a GM whispers you then it will pause for the value in seconds, in this case 10 mins.
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

ichmagbotsyay
Posts: 70
Joined: Tue Aug 09, 2011 7:43 am

Re: Bot doesn't logout anymore

#3 Post by ichmagbotsyay » Wed Oct 12, 2011 1:12 pm

Yes, well I have the option "GMnearbylogout" set to true in my profile and the MM window says that the bot is logging out when a GM comes near. The problem is, that it doesn't actually log out. If I set "GMnearbylogout" to false, will the bot just ignore GMs near me and continue botting and only react when whispered by one?

User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: Bot doesn't logout anymore

#4 Post by lisa » Wed Oct 12, 2011 7:15 pm

ichmagbotsyay wrote: If I set "GMnearbylogout" to false, will the bot just ignore GMs near me and continue botting and only react when whispered by one?
The GMnearbylogout is independant of the whisper settings, so yes. Setting it to false won't affect the other settings.

does RoMScript("Logout();"); still work?
Do you have the addon extraactionbars ?

You could try altering the userfunction code slighty. line 83
From

Code: Select all

		if settings.profile.options.GMnearbylogout == true then
			 RoMScript("Logout();");
			error("Logging out because GM detected.")
		end
to

Code: Select all

		if settings.profile.options.GMnearbylogout == true then
			RoMScript("CloseAllWindows()") 
			yrest(500)
			RoMScript("Logout();");
			error("Logging out because GM detected.")
		end
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

bokagavrilov
Posts: 86
Joined: Sun Sep 18, 2011 5:20 am

Re: Bot doesn't logout anymore

#5 Post by bokagavrilov » Thu Oct 13, 2011 6:30 am

does it work now?

User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: Bot doesn't logout anymore

#6 Post by lisa » Thu Oct 13, 2011 7:07 am

It works fine for me, so I would be looking at
making sure has latest file,
check what addons you use.
Update bot properly.
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

bokagavrilov
Posts: 86
Joined: Sun Sep 18, 2011 5:20 am

Re: Bot doesn't logout anymore

#7 Post by bokagavrilov » Thu Oct 13, 2011 8:02 am

lisa wrote:It works fine for me, so I would be looking at
making sure has latest file,
check what addons you use.
Update bot properly.
oh ok ;) but which code we should put in ? the "logout" or closeallwin":) or its the same X) coz on wisps mine stops but never acually tested it with gm-near

User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: Bot doesn't logout anymore

#8 Post by lisa » Thu Oct 13, 2011 8:29 am

Have a read here
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

ichmagbotsyay
Posts: 70
Joined: Tue Aug 09, 2011 7:43 am

Re: Bot doesn't logout anymore

#9 Post by ichmagbotsyay » Thu Oct 13, 2011 10:24 am

I have the newest version of the bot and I do not use extraactionbars and it's not logging out. I have rewritten the userfunction like you said and added a "CloseAllWindows" command before logging out. I will see if it works the next time a GM comes around and I will post if it works now or not.

edit: still doesn't work -.- any other ideas?

FireWire
Posts: 43
Joined: Tue Oct 04, 2011 2:25 pm

Re: Bot doesn't logout anymore

#10 Post by FireWire » Thu Oct 13, 2011 7:41 pm

It's working for me. Have you tried just deleting the whole rom bot, re downloading and then updating it? I was doing my daily's today and upon turn in as I ran into logar there was a GM in logar, it immediately logged out to character select.

ichmagbotsyay
Posts: 70
Joined: Tue Aug 09, 2011 7:43 am

Re: Bot doesn't logout anymore

#11 Post by ichmagbotsyay » Fri Oct 14, 2011 7:02 am

FireWire wrote:It's working for me. Have you tried just deleting the whole rom bot, re downloading and then updating it? I was doing my daily's today and upon turn in as I ran into logar there was a GM in logar, it immediately logged out to character select.
Yeah, I always completely delete the bot folder and have Tortoise download everything using "SVN Update". The weird thing is, that when I put "RoMScript("Logout();");" in a waypoint it works, just when a GM is detected it doesn't, even though the MM window says it does.

User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: Bot doesn't logout anymore

#12 Post by lisa » Fri Oct 14, 2011 7:05 am

Try using the latest version of the GM detect userfunction.
I think it is 2.0 now
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

ichmagbotsyay
Posts: 70
Joined: Tue Aug 09, 2011 7:43 am

Re: Bot doesn't logout anymore

#13 Post by ichmagbotsyay » Sun Oct 16, 2011 2:39 am

lisa wrote:Try using the latest version of the GM detect userfunction.
I think it is 2.0 now
Tried that (and also everything suggested here) and it still doesn't log out -.-
I've changed the code of the bot to just pause for ever, so it at least doesn't do anything suspicious (using a while-loop with a "player:rest")

Post Reply

Who is online

Users browsing this forum: No registered users and 2 guests