Script requests
Moderator: Game Masters
Script requests
Post below script requests you'd wish to have.
Don't post scripts here, but post them on the script forum.
Don't post scripts here, but post them on the script forum.
Last edited by Monad on Thu Oct 13, 2011 12:30 am, edited 1 time in total.
Re: Script requests
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
- 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
Bird location: 312331437
Re: Script requests
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?
it is possible? but legal at all?
Re: Script requests
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
hope it fixes you up
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
}
Re: Script requests
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?
Id like it hold down the mouse button for a couple seconds. Is there such a thing?
- Maeros Gouranga
- Posts: 184
- Joined: Mon Aug 03, 2009 9:36 am
- Location: 636496474
- Contact:
Re: Script requests
http://wiki.easyuo.com/index.php?title=ClickMilkbags 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?
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?
-everyone is a subsidiary corporation to someone.
Re: Script requests
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.
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
Maernos, Id like to it hold down the mouse button to scroll the crafting window to the right.
Re: Script requests
You can do that by clicking the arrow part of the crafting window twice. So no need to press the button longer.Milkbags wrote:Maernos, Id like to it hold down the mouse button to scroll the crafting window to the right.
Re: Script requests
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.
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.
Last edited by Milkbags on Thu Oct 13, 2011 10:49 pm, edited 1 time in total.