player.Class1 error

Runes of Magic/Radiant Arcana (http://www.runesofmagic.com)
Post Reply
Message
Author
ZZZZZ
Posts: 513
Joined: Sun Oct 21, 2012 1:42 am

player.Class1 error

#1 Post by ZZZZZ »

I sometimes get this error after a loading screen. In this case I got it after a round in dreamland, but I have had it on alts doing their daily quests + mini's run. Happens only after a loading screen, so I guess it could be some issue in the player:update() or such.

Code: Select all

Checking for missed Loot... completed.
Deleting: Ruins Heavy Crossbow
Inventory cleaned out
Waiting for next area to appear
Player address changed: 0x263B9100
The game client did not crash.
11:39am - undefined player.Class1 in settings.lua
User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: player.Class1 error

#2 Post by lisa »

high ping or slow PC?
My guess is it leaves the loadingscreen and then tries to update a little to soon afterwards.
Although it does show the new address so not sure, maybe increase the rest in waitforloadingscreen and test it out.

It has this in functions.lua around line 1478

Code: Select all

	rest(2000)
	player:update()
	return true
maybe increase it to 3000?
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: player.Class1 error

#3 Post by rock5 »

Or, if you don't want to edit the bot function, just add a rest after the wait.

Code: Select all

waitForLoadingScreen()
rest(1000)
player:update()
  • 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
ZZZZZ
Posts: 513
Joined: Sun Oct 21, 2012 1:42 am

Re: player.Class1 error

#4 Post by ZZZZZ »

Fast comp, standard ping for somebody from Australia on Nexon or US (250-400). I changed the rest(2000) to rest(4000) months ago, which stopped it from thinking the character was dead after a loadingscreen, but do sometimes get this error.
User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: player.Class1 error

#5 Post by lisa »

I had 4 chars farming KS (nexon) non stop for around 4 days and never got this issue, 2 were doing the ksfrogs which does a lot of loadingscreens. An ok PC and just enough connection speed, so yeah not sure what it could be then.
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
Post Reply