Honor Points

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

Honor Points

#1 Post by ZZZZZ »

Does anyone know how to check for current honor points? Just trying to get a waypoint to buy mats for crafting and need the Honor points value. Thanks in advance
User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: Honor Points

#2 Post by lisa »

*does forum search on theromwiki.com*

http://www.theromwiki.com/API:GetPlayerHonorPoint
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
ZZZZZ
Posts: 513
Joined: Sun Oct 21, 2012 1:42 am

Re: Honor Points

#3 Post by ZZZZZ »

lisa wrote:*does forum search on theromwiki.com*

http://www.theromwiki.com/API:GetPlayerHonorPoint
Oh, didnt think of searching theromwiki >.<

I'm still pretty bad at coding with mm lol, why does

Code: Select all

	Honor = GetPlayerHonorPoint()
until 100000 > Honor
return "attempt to call global 'GetPlayerHonorPoint' (a nil value)

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

Re: Honor Points

#4 Post by lisa »

because it is an ingame function and not a Rombot function you need to use it with RoMScrict

Code: Select all

local Honor = RoMScript('GetPlayerHonorPoint();')
make sure to add in a small into the loop aswell.

Code: Select all

yrest(100)
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
ZZZZZ
Posts: 513
Joined: Sun Oct 21, 2012 1:42 am

Re: Honor Points

#5 Post by ZZZZZ »

Ah ok, thanks for that :)
Post Reply