Search found 10940 matches

by rock5
Mon Jul 27, 2015 3:45 pm
Forum: Runes of Magic
Topic: CPU freq.
Replies: 58
Views: 32595

Re: CPU freq.

I don't know why it would bug you but I tested your change and it gives the right frequency for me. I don't know why dividing by 1000 gives the wrong value. I think we need to here from administrator.
by rock5
Mon Jul 27, 2015 1:51 pm
Forum: Runes of Magic
Topic: Need your help updating skill Ids
Replies: 101
Views: 35333

Re: Need your help updating skill Ids

I should depend on the skills. If you try to avoid the skills that cause crashing then it shouldn't crash
by rock5
Mon Jul 27, 2015 10:59 am
Forum: Runes of Magic
Topic: Need your help updating skill Ids
Replies: 101
Views: 35333

Re: Need your help updating skill Ids

What class check? What crashing?
by rock5
Mon Jul 27, 2015 10:48 am
Forum: Userfunctions, waypoint scripts, etc.
Topic: Rock5's Constellation (Zodiac) Pet scripts
Replies: 260
Views: 121858

Re: Rock5's Constellation (Zodiac) Pet scripts

You need to check if the buff exists first. So change this

Code: Select all

if buff.Level >= 60 then
to

Code: Select all

if buff and buff.Level >= 60 then
by rock5
Mon Jul 27, 2015 9:21 am
Forum: Userfunctions, waypoint scripts, etc.
Topic: Rock5's Constellation (Zodiac) Pet scripts
Replies: 260
Views: 121858

Re: Rock5's Constellation (Zodiac) Pet scripts

This is wrong. -- Keep track of number of times helped if player.Buffs[hname] then helped = player.Buffs[hname].Level end The player.Buffs table is not listed by name (or id). It's just and indexed table, ie. [1] = buff1, [2] = buff2 etc. Try this instead. -- Keep track of number of times helped loc...
by rock5
Mon Jul 27, 2015 9:00 am
Forum: Runes of Magic
Topic: Possible bug in EquipmentItem Class?
Replies: 7
Views: 1877

Re: Possible bug in EquipmentItem Class?

I think they started at 0 because that was the values found in memory. It probably should have originally had 1 added to it. I think that was before my time though.
by rock5
Mon Jul 27, 2015 3:21 am
Forum: Runes of Magic
Topic: Possible bug in EquipmentItem Class?
Replies: 7
Views: 1877

Re: Possible bug in EquipmentItem Class?

Maybe there was a reason for it but it's definitely a bug. I'll change it. If anything crops up we'll deal with it then.

Edit: It may just have been a copy and paste issue. Other item classes start at slot 1.
by rock5
Mon Jul 27, 2015 3:10 am
Forum: Runes of Magic
Topic: Need your help updating skill Ids
Replies: 101
Views: 35333

Re: Need your help updating skill Ids

Buffs on the other hand don't work the same way. For those we need to know all possible IDs that it may have so that we can properly detect them. So we need to check the buffs as a single class character whenever possible, as well as with any dual class where it gets modified by an elite skill. If ...
by rock5
Mon Jul 27, 2015 3:01 am
Forum: Runes of Magic
Topic: Need your help updating skill Ids
Replies: 101
Views: 35333

Re: Need your help updating skill Ids

druid/mage <skill name="DRUID_EARTH_ARROW" is listed in skills twice I only have it listed once. skills that change by class -- I started this but there was to many Don't worry about skills that change with different secondary classes. Just give me the id of the skill when you have no sec...
by rock5
Mon Jul 27, 2015 2:25 am
Forum: Runes of Magic
Topic: Need your help updating skill Ids
Replies: 101
Views: 35333

Re: Need your help updating skill Ids

I find nothing in the database with ID 501773. Holy Seal has four stacked levels. Holy Seal 1 = 500140 Holy Seal 2 = 500146 Holy Seal 3 = 500168 Holy Seal 4 = 500169 They must have changed the id. I don't have the Angel's Salvation skill, and the WIKI is very sparse on the information for it. So he...
by rock5
Sun Jul 26, 2015 10:34 am
Forum: MicroMacro scripts
Topic: MM2 Bot-Framework a work in progress..
Replies: 47
Views: 50721

Re: MM2 Bot-Framework a work in progress..

It can get complex. If there is a CObject:updateType() then a pawn will inherit that function so you don't need a CPawn:updateType() function. Unless of course you need to do some extra code in relation to pawns that don't apply to objects. When it comes to a function such as update then normally th...
by rock5
Sun Jul 26, 2015 7:12 am
Forum: Runes of Magic
Topic: Dailies as Functions
Replies: 13
Views: 6191

Re: Dailies as Functions

The way I wrote it it should work. The way you wrote it it wont work because you declare dqCount and dqPerDay local within the loop after it is checked. So they are treated as separate local variables. When it does the while again the original dqCount is used which hasn't changed. Try one of the exa...
by rock5
Sun Jul 26, 2015 5:10 am
Forum: Runes of Magic
Topic: Need your help updating skill Ids
Replies: 101
Views: 35333

Re: Need your help updating skill Ids

I have a 64 bit system and I'm sure a lot of users do. So I don't know what to say. Like I said, I don't know much about memory handling. I need the ids of skills who's Ids have changed. I also need buff ids if they have changed. Note: some skills id change if you have a second class so it's a good ...
by rock5
Sun Jul 26, 2015 3:08 am
Forum: Runes of Magic
Topic: Dailies as Functions
Replies: 13
Views: 6191

Re: Dailies as Functions

With while inventory:itemTotalCount(dailyItem) >= 5 and RoMScript("Daily_count()") ~= 10 do daily complete 0 items Skips because daily count == 10 dailys complete 10 items Skips because daily count == 10 dailys complete 200 items Skips because daily count == 10 dailys half complete 0 items...
by rock5
Sun Jul 26, 2015 2:58 am
Forum: Runes of Magic
Topic: Need your help updating skill Ids
Replies: 101
Views: 35333

Re: Need your help updating skill Ids

I put micromacro in the use tortisesvn and to a checkout into the scripts folder for rombot, then copy ingamefunctions over runesofmagic addon folder I end up with c:\micromacro\scripts\rom Sounds right. I doubt that there is anything wrong with mm and the bot. I suspect there is something wrong wi...
by rock5
Sun Jul 26, 2015 2:53 am
Forum: Runes of Magic
Topic: Need your help updating skill Ids
Replies: 101
Views: 35333

Re: Need your help updating skill Ids

I suspect knight skill make up most of the messed up skills. Note: the reason some buffs don't have buff ids is because the skill cooldown is longer than the buff duration. So we only need buff ids if the buff duration is longer than the cooldown. Threaten requires Holy Seal. Is 501773 still the cor...
by rock5
Sun Jul 26, 2015 1:36 am
Forum: Runes of Magic
Topic: Need your help updating skill Ids
Replies: 101
Views: 35333

Re: Need your help updating skill Ids

I figured it out needed to have a comma and the page number the skill is on. print(FindSkillBookSkill("Shadowstab"),1) Not good I get this trying to use command line. ---------------- RomBot command line Type in 'q' (without quotes) to quit. Command> print(FindSkillBookSkill("Shadows...
by rock5
Sun Jul 26, 2015 1:30 am
Forum: Runes of Magic
Topic: Need your help updating skill Ids
Replies: 101
Views: 35333

Re: Need your help updating skill Ids

This happens when i try to start command line also took me 5 tries before it finally gave me the command line. lets hope if we get the classes working this goes away. The game client did not crash. 2015-07-26 01:05:20 - C:/micromacro/scripts/rom/classes/item.lua:143: attempt to concatenate global '...
by rock5
Sun Jul 26, 2015 1:26 am
Forum: Runes of Magic
Topic: Need your help updating skill Ids
Replies: 101
Views: 35333

Re: Need your help updating skill Ids

Ok, did the second lot. I changed a few ids there although some of them looked like class specific ids. I think I'll start adding the updated skills to the seconds post. Advanced resurrection -- Always been there, but requires an Item Shop amulet to use Blessing of Humility -- Drops you to bottom of...
by rock5
Sun Jul 26, 2015 12:34 am
Forum: Runes of Magic
Topic: Need your help updating skill Ids
Replies: 101
Views: 35333

Re: Need your help updating skill Ids

Ok, I checked the first set. I only updated 1 Id. You don't really have to post skills that don't change. :D Are these new skills? They are not in the database. Do they need to be added? Advanced resurection Blessing of Humility Holy Candle Recall Devotion Halo Sacrificial Cure Is this a typo? 42963...