Script requests

For general discussion concerning Pangaea

Moderator: Game Masters

Post Reply
User avatar
Monad
Game Master
Posts: 2522
Joined: Tue May 31, 2011 1:30 pm

Script requests

Post by Monad »

Post below script requests you'd wish to have.
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.
Xerxes
Posts: 501
Joined: Sat Feb 14, 2009 11:02 am
Location: Holland
Contact:

Re: Script requests

Post 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
Bird location: 312331437
User avatar
Karidis
Posts: 168
Joined: Wed Nov 26, 2008 12:52 am
Contact:

Re: Script requests

Post 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? :roll:
Orin
Posts: 392
Joined: Mon Apr 25, 2011 8:45 pm
Contact:

Re: Script requests

Post 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
Image
User avatar
Milkbags
Posts: 128
Joined: Sat Jul 23, 2011 5:58 pm
Location: Box in the Alley
Contact:

Re: Script requests

Post 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?
Image
User avatar
Maeros Gouranga
Posts: 184
Joined: Mon Aug 03, 2009 9:36 am
Location: 636496474
Contact:

Re: Script requests

Post 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?
Image
-everyone is a subsidiary corporation to someone.
User avatar
Monad
Game Master
Posts: 2522
Joined: Tue May 31, 2011 1:30 pm

Re: Script requests

Post 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.
User avatar
Milkbags
Posts: 128
Joined: Sat Jul 23, 2011 5:58 pm
Location: Box in the Alley
Contact:

Re: Script requests

Post by Milkbags »

Maernos, Id like to it hold down the mouse button to scroll the crafting window to the right.
Image
User avatar
Ivan
Posts: 3306
Joined: Sat Dec 13, 2008 8:27 pm
Contact:

Re: Script requests

Post 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.
User avatar
Milkbags
Posts: 128
Joined: Sat Jul 23, 2011 5:58 pm
Location: Box in the Alley
Contact:

Re: Script requests

Post 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.
Last edited by Milkbags on Thu Oct 13, 2011 10:49 pm, edited 1 time in total.
Image
Post Reply