Search found 24 matches

by Yoder
Tue Sep 06, 2011 7:58 pm
Forum: Runes of Magic
Topic: Change exp Per Hour in Window title
Replies: 52
Views: 10358

Re: Change exp Per Hour in Window title

local LAST_PLAYER_X = 0; local LAST_PLAYER_Z = 0; function timedSetWindowName(profile) local displayname = string.sub(profile, 1, 4) .. "****"; if( (player.X ~= LAST_PLAYER_X) or (player.Z ~= LAST_PLAYER_Z) ) then setWindowName(getHwnd(), sprintf(language[600], BOT_VERSION, displayname, p...
by Yoder
Tue Sep 06, 2011 3:59 pm
Forum: Runes of Magic
Topic: Change exp Per Hour in Window title
Replies: 52
Views: 10358

Re: Change exp Per Hour in Window title

-- Set window name, install timer to automatically do it once a second local displayname = string.sub(load_profile_name, 1, 4) .. "****"; setWindowName(getHwnd(), sprintf("RoM Bot %s [%s]", BOT_VERSION, displayname)); settings.loadProfile(load_profile_name); settingsPrintKeys();...
by Yoder
Tue Sep 06, 2011 2:37 pm
Forum: Runes of Magic
Topic: Change exp Per Hour in Window title
Replies: 52
Views: 10358

Re: Change exp Per Hour in Window title

This could work for what I want.

If I can find where the current window title is defined I can work from there.

Any help please,

Thanks
Yoder
by Yoder
Tue Sep 06, 2011 10:44 am
Forum: Runes of Magic
Topic: Change exp Per Hour in Window title
Replies: 52
Views: 10358

Change exp Per Hour in Window title

Can I add something to my waypoints to make Rom bot show in the window title what Ive gathered so far vs how much exp Ive earner Idealy I would have it say RoM Bot Player****(Gathered #Number Gathered# "Item monitored") Item monitored could be staticaly assigned so only 1 number would chan...