Search found 11 matches

by whitewiz
Thu Feb 13, 2014 7:57 pm
Forum: RoM general
Topic: Energy of Justice easily earned
Replies: 53
Views: 18937

Re: Energy of Justice easily earned

Sooo i was just starting to add GM detection to my Papp Hessoff script when i got banned.... :/
by whitewiz
Thu Feb 13, 2014 7:44 pm
Forum: RoM general
Topic: Found out a couple of thing.
Replies: 9
Views: 3040

Re: Found out a couple of thing.

With respect to bosses; Loot and stats are decided by a loot table and stat table respectively. example http://rom.onlinewelten.com/news,id5347,patch_6_bethomia_boss_drops_on_normal_easy.html?sec=1 A Boss loot table is statically linked to the boss/never changes. None of the gear pieces are better/w...
by whitewiz
Mon Jan 27, 2014 7:47 pm
Forum: Userfunctions, waypoint scripts, etc.
Topic: The Treasure Within
Replies: 9
Views: 4023

Re: The Treasure Within

I like the distance limits.
i added type=TRAVEL to keep from attacking mobs.
tested and working well
Thank you for your help Bill! ur d best :)
by whitewiz
Mon Jan 27, 2014 4:26 pm
Forum: Runes of Magic
Topic: Need Help to complete New Aria Script
Replies: 3
Views: 1441

Re: Need Help to complete New Aria Script

I am working on the same quest and I ran into problems as well. I have the logic worked out but occasionally this script goes into a loop changing classes back and forth. The script is for UnderLevel; meaning that quest will be accepted and items collected on my high level class but then turned in o...
by whitewiz
Thu Jan 23, 2014 7:17 pm
Forum: Userfunctions, waypoint scripts, etc.
Topic: The Treasure Within
Replies: 9
Views: 4023

Re: The Treasure Within

Calling an ingame macro or a hotbar item might be a solution
i'll look for some examples of how to do those
by whitewiz
Thu Jan 23, 2014 7:14 pm
Forum: Userfunctions, waypoint scripts, etc.
Topic: The Treasure Within
Replies: 9
Views: 4023

Re: The Treasure Within

But i only need to use the script in 1 language 8-)

I'm far more interested in getting him to use the potion than the other items. If he can't use the potion there is no point in making the script.
by whitewiz
Thu Jan 23, 2014 12:19 am
Forum: Userfunctions, waypoint scripts, etc.
Topic: The Treasure Within
Replies: 9
Views: 4023

Re: The Treasure Within

Code: Select all

	<onLoad>
		changeOptionFriendMob("friend", "Lesser Poison Dragon", "Add")
	</onLoad>
added this but no improvement. still attacking yellow Dragons and chasing green/friendly dragons. and yes i downloaded the userfunction_profilechange
by whitewiz
Wed Jan 22, 2014 10:43 pm
Forum: Userfunctions, waypoint scripts, etc.
Topic: The Treasure Within
Replies: 9
Views: 4023

The Treasure Within

Quest Name: The Treasure Within Zone: Chrysalia Level: 71 to accept quest 63 to turn in Chosen Why: near a housemaid, safe turn in. Collect quest items on primary class. Quest Details: get Detoxification Potion when accepting the quest. Use on Lesser Poison Dragons. The dragons will drop a Great Tur...
by whitewiz
Sun Jan 12, 2014 3:26 pm
Forum: Runes of Magic
Topic: Stopping 'cast' when clicking item.
Replies: 37
Views: 9691

Re: Stopping 'cast' when clicking item.

the v2 code will run 10 dailies without user intervention. On my druid it will not exit the code when 10 dailies are complete but on other characters it will. Just an odd thing.
by whitewiz
Sat Jan 11, 2014 2:00 pm
Forum: Runes of Magic
Topic: Stopping 'cast' when clicking item.
Replies: 37
Views: 9691

Re: Stopping 'cast' when clicking item.

Made some modifications to the code: added a routine to get more eggs if you run out removed code to use daily tickets, add back in if you need it <?xml version="1.0" encoding="utf-8"?> <waypoints> <onLoad> settings.profile.options.WAYPOINT_DEVIATION = 5 settings.profile.options....
by whitewiz
Fri Jan 10, 2014 3:15 pm
Forum: Runes of Magic
Topic: Stopping 'cast' when clicking item.
Replies: 37
Views: 9691

Re: Stopping 'cast' when clicking item.

i believe your problem with not accepting the quest lies here. the AcceptQuest is inside an IF statement.. Move it below the end and it will work. if 10 == dailyQuestCount then if inventory:itemTotalCount(202434) > 0 then inventory:useItem(202434) end local dailyQuestCount, dailyQuestsPerDay= RoMScr...