Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - azmanomer

Pages: [1]
1
Scripting Chat / Recall home-Move items to my secure-recall spot
« on: September 30, 2012, 07:01:48 AM »
i want to upgrade my script which is doing automaticly when its weight full go home and put items (which was looted by itemeval script) and go back to spot and continue killing.

i have done some research as always but i cant handle it whit my knowladge so i need your help. It seems everybody says recall script is hard to write for newbie so i will copy that from another script but im not sure that how can i do it too :(

2
Script Debug / Hotkey issue
« on: September 29, 2012, 06:51:59 AM »
Code: [Select]
set %loot F9
set %pet1 F10
set %pet2 F11
set %kapi F12
set %runebook e
set %dismount f

Event SysMessage Script Aktif
loop:
OnHotKey %loot
gosub loot
OnHotKey %pet1
gosub pet1
OnHotKey %pet2
gosub pet2
OnHotKey %kapi
gosub kapi
OnHotKey %runebook
gosub runebook
OnHotkey %dismount
gosub dismount
goto loop


sub loot
finditem YFM G_2
if #findcnt > 0
{
set #lobjectid #findid
set %ceset #findid
event macro 17 0
wait 10
ignoreitem #findid
finditem POF C_ , %ceset  
find:
finditem * C_ , %ceset
if #findstack > 2
{
ignoreitem #findid
goto find
}
if #findcnt > 0
{
set %object #findid
gosub Check
event sysmessage %name %value
if %value > 70
{
exevent drag #findid #findstack
wait 15
exevent dropc #backpackID
wait 5
}
set %value 0
ignoreitem #findid
goto find
}
}
goto loop

sub runebook
set #lobjectid %runebook
wait 5
event macro 17 0
wait 5
goto loop

sub dismount
finditem %mount
if #findkind = 1
{
set #lobjectid #findid
wait 5
event macro 17 0
}
else
{
set #lobjectid #charid
wait 5
event macro 17 0
}
goto loop

sub pet1
event macro 1 0 [band
wait 2
set #ltargetid *pet1
wait 5
event macro 22 0
wait 10
return

sub pet2
event macro 1 0 [band
wait 2
set #ltargetid *pet2
wait 5
event macro 22 0
wait 10
return

sub kapi
finditem %kapi G_2
if #findcnt > 0
wait 5
set #lobjectid #findid
event macro 17 0
wait 5
goto loop


i tried to use these hotkeys with JUOM (Jorman's Ultima Online Macrotor) but when i started it nothing happened. It seems these hotkeys didnt focused for just ultima client. Is there anyway to fix it? i tried it with razor too but razor cant identify loot section :( sorry for my english.

3
New member introductions / New member intro
« on: September 23, 2012, 03:32:59 PM »

Pages: [1]