Page 1 of 22
Script requests
Posted: Tue Oct 04, 2011 11:18 pm
by Monad
Post below script requests you'd wish to have.
Don't post scripts here, but post them on the script forum.
Re: Script requests
Posted: Wed Oct 05, 2011 6:52 am
by Xerxes
I would like to have a script which does the following:
- When my shield wears off, it will sing a song of shielding
- When my hp drops <50 it will say .use gheal
- When neither treshold of the above is met, keep on provoking 1 selected creature
Re: Script requests
Posted: Wed Oct 05, 2011 11:09 am
by Karidis
would like to have a script that could make special potions like clumbsys for example, a script that will select empty bottle, then 1st reg, 2nd reg, 3rd reg, and so on and in the end uses Esc. then loop of course.
it is possible? but legal at all?
Re: Script requests
Posted: Thu Oct 06, 2011 5:33 am
by Orin
i have a script like this but not sure the proper place to put it since GM must approve it.
will post here and if GMs approve its all yours
this will only make lesser potions but can easily be modified to make normal or greater
Code: Select all
; as soon as you start script get ready
;to target your materials
gosub emptybottle
sub makepotion
{
set #lObjectID %emptybottle
event Macro 17 ; use empty bottle
target 2s
set #ltargetid %potion
event macro 22 ; target potion to mix
wait 2s
set #ltargetid %essence
event macro 22 ; target essence
wait 1s
key ESC
wait 4s
gosub makepotion
}
sub emptybottle
{
Event exmsg #CharId 3 33 Target your empty bottles
set #targcurs 1
wait 2s
finditem #ltargetid
wait 2s
set %emptybottle #ltargetid
wait 2s
;halt
gosub essence
}
sub essence
{
Event exmsg #CharId 3 33 Target your Essence
set #targcurs 1
wait 2s
finditem #ltargetid
wait 2s
set %essence #ltargetid
wait 2s
;halt
gosub potion
}
sub potion
{
Event exmsg #CharId 3 33 Target the potion to mix
set #targcurs 1
wait 2s
finditem #ltargetid
wait 2s
set %potion #ltargetid
wait 2s
;halt
gosub makepotion
}
hope it fixes you up
Re: Script requests
Posted: Fri Oct 07, 2011 7:08 am
by Milkbags
I dunno about a script request per se... but I am looking for help making a single command.
Id like it hold down the mouse button for a couple seconds. Is there such a thing?
Re: Script requests
Posted: Wed Oct 12, 2011 7:55 pm
by Maeros Gouranga
Milkbags wrote:I dunno about a script request per se... but I am looking for help making a single command.
Id like it hold down the mouse button for a couple seconds. Is there such a thing?
http://wiki.easyuo.com/index.php?title=Click
I'm not sure if that's possible, but you can make a single click command click multiple times(x # f). What are you trying to do exactly?
Re: Script requests
Posted: Thu Oct 13, 2011 12:31 am
by Monad
Moved the post here because it seems here's going to be more conversation so we don't need to approve the posts here.
Don't post scripts here, but post them on the script forum. Only script requests and discussion of them in this post.
Re: Script requests
Posted: Thu Oct 13, 2011 10:20 am
by Milkbags
Maernos, Id like to it hold down the mouse button to scroll the crafting window to the right.
Re: Script requests
Posted: Thu Oct 13, 2011 10:21 am
by Ivan
Milkbags wrote:Maernos, Id like to it hold down the mouse button to scroll the crafting window to the right.
You can do that by clicking the arrow part of the crafting window twice. So no need to press the button longer.
Re: Script requests
Posted: Thu Oct 13, 2011 10:45 pm
by Milkbags
I want the button to be held down to scroll for 4-5 solid seconds. I dont want it to press the button 30 times if there is a single command to take care of it.
That is why I say hold the mouse button down to scroll and not double click or many click. You know, avoid server spamming and make it simple in one go.