Points honor!!!

Talk about anything in Runes of Magic. This does not need to pertain to botting.
Post Reply
Message
Author
wilifox
Posts: 86
Joined: Tue Jul 26, 2011 6:00 pm

Points honor!!!

#1 Post by wilifox »

It is possible to know the points of honor and doing something in particular?

for example;

if (point == 25000 honor)
then
....................
.............
end
User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: Points honor!!!

#2 Post by rock5 »

Code: Select all

if getCurrency("honor") == 25000 then
....................
.............
end
  • 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
Bot_romka
Posts: 96
Joined: Tue Apr 05, 2011 2:59 am
Location: Russia

Re: Points honor!!!

#3 Post by Bot_romka »

Variant with macro

Code: Select all

if RoMScript('GetPlayerHonorPoint()') == 25000 then
wilifox
Posts: 86
Joined: Tue Jul 26, 2011 6:00 pm

Re: Points honor!!!

#4 Post by wilifox »

thx now found!
User avatar
nerf
Posts: 88
Joined: Thu Jan 27, 2011 10:44 am

Re: Points honor!!!

#5 Post by nerf »

there is something wrong with this? this should work with the client in any language? I do not work for me

Code: Select all

	if( 82 > player.Level and RoMScript('GetPlayerHonorPoint()') >= 25000 ) then
			sendMacro("Logout();"); yrest(8000);
		end
part of Bot_romka script
User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: Points honor!!!

#6 Post by rock5 »

I don't know if GetPlayerHonorPoint works with the points you get since the currency changes a while back. The new function for all currencies is GetPlayerPointInfo. But you can just use the bot function getCurrency("honor").

Code: Select all

 if( 82 > player.Level and getCurrency("honor") >= 25000 ) then
  • 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
nerf
Posts: 88
Joined: Thu Jan 27, 2011 10:44 am

Re: Points honor!!!

#7 Post by nerf »

rock5 wrote:I don't know if GetPlayerHonorPoint works with the points you get since the currency changes a while back. The new function for all currencies is GetPlayerPointInfo. But you can just use the bot function getCurrency("honor").

Code: Select all

 if( 82 > player.Level and getCurrency("honor") >= 25000 ) then

thanks, but it works With The client in any language?
User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: Points honor!!!

#8 Post by rock5 »

Yes. "honor" is just a code word to return the honor points.
  • 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
Post Reply