Created: 11 days ago on 05/26/2025, 11:18:05 AM
FileType: No file type provided
Size: 432
Category: No category provided
Skills: No skills provided
Hotkey: No hotkey provided
Tags: No tags provided
Description: This is a simple loop to train musicianship and peacemaking. You will need at least one Tambourine in your backpack and a song book with a song of Peacemaking. Stand in the newbie dungeon or walk around fighting for easy skill ups. This will loop until you stop it.
pauseSeconds = 8000
while Skills.GetValue('Peacemaking') < 100 do
instrument = Items.FindByType(3741)
if instrument then
Player.UseObject(instrument.Serial)
Spells.Cast('SongOfPeacemaking')
Targeting.WaitForTarget(1000)
Targeting.TargetSelf()
Pause(pauseSeconds * 1)
end
end