Computer Shutdown

Runes of Magic/Radiant Arcana (http://www.runesofmagic.com)
Post Reply
Message
Author
ExeCuter
Posts: 15
Joined: Tue Oct 25, 2011 9:25 pm

Computer Shutdown

#1 Post by ExeCuter »

Hi,

I have a problem, after finishing the daily waypointscript the bot shuts down and the character logs out.
So far, so good - but when the bot shuts down, my comuter also want to shutdown - I get the message (I'm German so ity to translate)
"Windows will shutdown in few minutes". This happens after every 10 daily (It's not the normal message if you have to restart windows for new updates)
I always have to break this process with "shutdown -a", because there is no option to stop it.
I think there is a problem with the logoutscript

Code: Select all

	local dailyQuestCount, dailyQuestsPerDay= RoMScript("Daily_count()"); 
     			if 10 == dailyQuestCount then
      				printf ("Done "..dailyQuestCount.." of " .. dailyQuestsPerDay ..    " Quests. STOP.");
      				--error("Bot ending.", 0); -- ends the script.
					player:logout()
      			else
      				printf("Done "..dailyQuestCount.." of " .. dailyQuestsPerDay ..    " Left " .. dailyQuestsPerDay - dailyQuestCount .. " Quests.");
      			end
Thanks for your attention
User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: Computer Shutdown

#2 Post by lisa »

More then likely your profile option setting

Code: Select all

<option name="LOGOUT_SHUTDOWN"		value="false" />
if it is set to true it will shut down the computer.
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
User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: Computer Shutdown

#3 Post by rock5 »

Damn it! I type too slow. :)
  • 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
User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: Computer Shutdown

#4 Post by lisa »

rock5 wrote:Damn it! I type too slow. :)
lol =)
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
ExeCuter
Posts: 15
Joined: Tue Oct 25, 2011 9:25 pm

Re: Computer Shutdown

#5 Post by ExeCuter »

Thanks you 2. I'm a little bit confused, I never had this when I used Logout before.
Now it works like before :)
Post Reply