Table of Contents
Details #
All scripts have been collected over the years and if available will still contain the creators details, these scripts may run well or not.
Scripts #
Peacemaking.sc #
sub main()
UO.AddObject('monster')
While UO.Targeting()
Wait(500)
Wend
var monster = UO.GetSerial('monster')
Repeat
UO.UseSkill("Peacemaking")
UO.WarMode(0)
Wait(3000)
UO.Attack(monster)
Wait(2000)
Until False
end sub
Peacemaking 3.sc #
sub Main()
La:
UO.Exec("useskill Peacemaking");
wait(10000);
GOTO La
end sub