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.


Messages - Cuemif

Pages: [1] 2 3
1
Scripting Chat / Re: Mirror image
« on: August 06, 2011, 02:06:54 AM »
Thank you

2
Scripting Chat / Mirror image
« on: August 06, 2011, 12:26:29 AM »
I am looking for a script that when HP gets so low it cast mirror image . I was thinking of trying to write this but I just suck lol so not gonng even attempt was hoping maybe some one could throw me a bone or maybe point in the right direction thanks in advance

3
Scripting Chat / Re: Weapon Ablities
« on: February 23, 2011, 03:43:30 PM »
I have given up on this I can not figure it out and do not know where to start if someone else wants to pick it up great . hope you post it here for us all to share

4
Scripting Chat / Re: Weapon Ablities
« on: February 07, 2011, 04:49:25 PM »
Ok sounds good. Now I just need to figure a starting point been looking at honor/attack scripts and man I am not seeing how to get this done lol  any more pointer guys?

5
Scripting Chat / Re: Weapon Ablities
« on: February 07, 2011, 08:01:07 AM »
Quote
*OH you could just put it on a timer, but that's not a very good way of doing it. If you miss and get out of cycle with the timer you may wind up toggling it off all the time.

You can do it this way you just need to compute the timer. What applications like int, spirit speak, or what ever would make the timer be long or shorter and then give also do acheck on your mana and make sure you have the mana to recast the special and then leave yourself a few mili seconds before recasting it and it will work.

I am noob at best I this I am gonna go for the 2nd way reading the pixils tho the timer way would be more effective

6
Scripting Chat / Weapon Ablities
« on: February 06, 2011, 09:07:46 PM »
I have an idea to make a script but not sure where to start. Here is what I want it to do . I want it to keep my weapon speicals toggled, so that if I use a spell once it is casted it will BLAM toggle it back on . I hope someone can help me with this I think it would help a lot of use :P

7
Scripting Chat / Little help ?
« on: January 11, 2011, 03:35:06 PM »
Hey guys, I am trying to add a sub into a current script but I don't know where to start. The script I am looking to add a sub into is here. http://www.scriptuo.com/index.php?topic=1999.0

What I would like to do is: If crossbow bolts = 0, double click my bank stone and then pull 1000 crossbow bolts from my bank and place them into my backpack. My newb scripting mind can not grasp how to do this. Maybe someone can point me in the right direction? Or help me out a bit? Thanks in advance!

Bankstone code.
Code: [Select]
#FINDID:IPKOYMD
#FINDTYPE:SNF

Crossbow bolts
Code: [Select]
#FINDID:YIEDSMD
#FINDTYPE:LNK

Thanks again guys

8
Scripting Chat / Re: Bank and move items
« on: January 05, 2011, 09:57:32 PM »
Anyone have any more ideas?

9
New member introductions / Re: Intro
« on: January 04, 2011, 06:16:58 PM »
Welcome boss

10
Scripting Chat / Re: Bank and move items
« on: January 03, 2011, 11:58:42 PM »
I can not believe I forgot to post the codes of the bank stone and what not sorry haha

Bankstone
Code: [Select]
#FINDID:IPKOYMD
#FINDTYPE:SNF

CrossBow Bolts
Code: [Select]
#FINDID:YIEDSMD
#FINDTYPE:LNK

As stated above I am trying to add a Sub into a current script. Here is a link the the script
http://www.scriptuo.com/index.php?board=78.0

Once again sorry for my nooberness and thanks for the help

11
Scripting Chat / Re: Bank and move items
« on: January 02, 2011, 03:25:59 PM »
Start here.

Janus has a good drag/drop script.
http://www.easyuo.com/forum/viewtopic.php?p=30085&sid=0d0cfb3454ef35b11509f49a39c8a20a

Then try to create something at the beginning that opens the stone using the object id, then checks for the gump being open, and if it is proceeds to the drag/drop. Something like this should work, although I'm admittedly not the best coder myself.. I usually just jack around enough with stuff until it works.

This is kinda what I am looking for but not sure it will work . See I am adding a sub in an existing script and when this script notices that there are 0 bolts it halts so instead of doing that I want it to dclick %bankstone then remove 1000 bolts from bank box.

12
Scripting Chat / Bank and move items
« on: January 01, 2011, 01:54:39 AM »
Ok here is what I am trying to do .. I play on a shard that has bankstone. I want double click the stone and then pull 1000 crossbow bolts from my bank I have a stack of about 50-60k in there at a time. I for the life of me can not figure it out I am newb when it comes to easyuo. Maybe someone can shoot me an idea  Thanks to everyone that helps .

13
Freeshard specific scripts / Re: Heartwood Fletcher Quest for Bolts
« on: December 28, 2010, 07:07:42 PM »
The shard I play on has bank stones so I am able to just put like 100k bolts in there and I just have to restock every so often, I was wondering how I would go about making it so the would pull say 1000 from my bank it the bolts went below 100? anything thoughts on this would be helpful .
I think it needs to go within here but I am noob at best when it comes to scripting.

Code: [Select]
sub Target_Bolts
Target_Bolt:
Finditem LNK C_ , #backpackid
if #findkind = -1
{
Display Hold on no Bolts Left
}
if #findcol = 0
{
set #ltargetid #findid
event macro 22
}
Finditem LNK C_ , #backpackid
if #findcol = 0
{
goSub Toogle_Quest_Items
goto Target_Bolt
}
set %Bolts %Bolts + 10
return

14
Questing / Re: Gen's Library Donations
« on: October 26, 2010, 10:45:43 PM »
On my shard I when the axe button is pressed it will ask you to say how much you wish to donate, is this true to everyone else? ( first time doing this quest ) If so ,here is my problem . I recall into donate it opens the donation gump. the counter in script states I am donation BUT I am not script says I have 3000 points when I really have 0 . I am not sure what to do here .. Sorry again for my noobness

15
Freeshard specific scripts / Re: Heartwood Fletcher Quest for Bolts
« on: October 09, 2010, 01:46:22 PM »
ok the script is working very well! thanks a lot!

Glad I could help :p

Pages: [1] 2 3