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 - Coragin

Pages: 1 ... 7 8 [9] 10
121
Scripting Chat / Need help with two examples please. Craft item and...
« on: October 11, 2009, 03:28:23 AM »
I have been reading other scripts, too many have "set clickx" and "Clicky" in the main setup. 

I could really use an example (with an explaination)  of how to make a create item sub such as a tinker tool set, bow, anything. 

I would like to 'not' have set clickx and y in a setup, but rather it set in the sub itself.


Code: [Select]
  set %ttools JTL
Sub maketinker

finditem %ttools C_ , #BackpackID
  set #lObjectID %ttools
event macro 17 0

(okay now gump should be open, this is where I am lost, please help)

Now, if I can just get this example with how to navigate menus to make a set of tinker tools or any other tool, click make now ect, I can get the subs for all the tools.

Second example would be how to take resources out of a secure container and place in backpack.  Ingots, wood ect.

And how do I pick up different types of ingots and wood?  They all have the same name type.

122
Scripting Chat / HOW TO: Change HWQuester to work with 'make quest item'
« on: October 03, 2009, 05:10:06 AM »
Well recently EA added in a nice little feature that when you make an item, it will automaticly be tagged as a quest item if the button is pushed on the crafting gump.  This saves a ton of time over long hauls with the HW quester.  To allow this to work for you, fist, click the button in the gump to quest item.  Then go into the code and find this line...

Code: [Select]
gosub cyclequests

It is right below the following lines......

Code: [Select]
;========== SUOQuester ==========

sub SUOQuester
 
loop:
  gosub bpcount

Now highlight that "gosub cyclequests" and cut it....

Then move up to the above code....and right under "gosub bpcount" add in the line you just cut.  This is getting the quest first now.

Now go back to where you cut "gosub cyclequests and find "gosub mark" and put a ; in front of it, so it looks like this....

Code: [Select]
  ;gosub mark
  gosub finishquest
  wait 10
  gosub loot
  goto loop

All that is doing is skipping the mark sub routine.

And there you have it, the finished part of code should look like this...

Code: [Select]
;========== SUOQuester ==========

sub SUOQuester
 
loop:
  gosub bpcount
  gosub cyclequests
SUOQuester_loop2:
  gosub load_resource %ressource %beetlepack #BACKPACKID %resamount %reshue   ; grab more resources from beetle.
  if #RESULT = #TRUE
    return
 
SUOQuester_loop3:
  gosub CheckAndCraftItems %tool %item %ressource %itemresourcecnt %reshue %itemamount %craftitemchain ; craft all the item for the quest
  if #RESULT = RES_LOW
  {
    goto SUOQuester_loop2
  }
  if #RESULT = NO_TOOL
  {
    gosub ToolCheck %beetlepack
    goto SUOQuester_loop3
  }
  ignoreitem reset mark

  ;gosub mark
  gosub finishquest
  wait 10
  gosub loot
  goto loop
 
return

Enjoy doing your HW quests faster!  DO NOT forget to hit the button on the crafting gump to tag quest items or it WILL fail.  Hope this helps.

123
New member introductions / My (RE) Introduction
« on: October 02, 2009, 05:26:07 PM »
Well I took a few months off, well more like 4 or so wasent it TM?  So, I see a lot of new names, I figured I would RE Introduce myself.  Here we go...

I like Scripts

The End!

Nawwwwwwwww, just kidding!

Well, my name is Coragin, been playing uo since well before the infamous notoriety patch.  Played almost since its launch, loved it and always loved the lore.  Quit for a few years multiple times for various reasons, like playing Everquest, RL ect.  I am back now and this is my longest stint keeping my accounts active.  I understand scripts for the most part since they are very similar to code in Macroquest for Everquest, which I was very adept at writing.  Still there is so much different as well.  I know enough to get myself into trouble lol.  I can edit scripts pretty good to do different things that I want them to (See my other posts about editing others scripts).  I am also very good at thinking, finding new things and coming up with new ideas, both for scripts and work arounds for in game stuff as well as helping debug and brainstorming new scripts.  So, for what I lack in script writing ability, I make up for in I guess you would  call it, just being helpful to the community.

Outside of the internet, I am a single Father to one very beautiful little 4 year old girl.  She has saved my life and my future and I thank God every single day for the joy she has brought to my life.  I also run a sound system and web page for my Fathers ministries, where we travel all around the country to jails, youth homes and homeless shelters as well as churches and he sings and preaches.  I do all the techy stuff, running the sound system, recording to cd and dvd, doing his web page ect.

I am here to be the best help that I can for the community, since reading this site for so long before joining, I saw that the mod's and members were so much more helpful than easyuo's members and mod's.  So why did I come here?  For the community!  I didnt want to be part of any community that didnt help and promote learning to its members.  Well, easyuo liked to help, but most of the time it felt like being talked down to...

So, here I am, I am here to stay and if you need any help I am here for you.  Be it a question about a script or idea for the game itself, if I cannot answer, I am sure one of the other fine members can.

Well, thats it, my reintroduction, I hope you enjoyed it as much as I enjoyed writing it. 

124
Scripting Chat / Suggestion for Heartwood Quester and a ?
« on: October 02, 2009, 05:43:31 AM »
With the addition of the new button to have all items made already tagged for quest, if you switched to getting quest 'before' making the items and had the button clicked to 'quest item' it would save seconds each time.  Just a random thought, since I cant do scripting too well, suggestions and ideas is the best I can do.

Now for the question:

I seem to remember you can get quests from others to maximize your success of getting either 'arch support' or 'simple bow' to get it done quicker.  Can anyone tell me who to get these quests from?

125
UO-Related Tutorials / Imbuing for your miner/lumberjack bot!
« on: October 01, 2009, 11:01:34 AM »
Okay some might have already thought of this, maybe some didnt, I dont know.

I am at 100 something imbuing.  Watching my lumberjack, he was getting attacked from time to time by brigands, trolls, ogres and harpys.  Mostly due to his suit, it sucked, just 100% lrc I could throw together.  But all these creatures hit for 100 physical dmg, so it got me thinking.  Make a suit for him, with the mods I want to help him  survive.

With imbuing you can mod any stat you want to armor, easier if you get something not modded at all right?  So here is what I did.

First, dont go with MAX mod on anything, you will need special monster drops and well you dont need it for a lumberbot right?  So instead, lower the mod to what you need spread out over the armor.

1.  Goto an armorer, buy up a full suit of leather.
2. Goto a tinkerer and buy a ring and a bracelt (not modded)

Now when you have this stuff, mod you LRC onto the armor, spreading it out to get to 100% LRC over the 6 pieces.  So 6 / 100 = 16 roughly.  This will lower the weight of the modding of the rest of what you want.  This take I believe amber and magical residue.  Next I modded on Physical resist to all the leather, to max it out at 70 with protection on.  So, 70+12 for me, 82.  82 / 6 = 13ish.  This takes magical residue and diamonds.  Tehn I added any other mods I felt like, in my case I maxxed out reflect physical LOL.

Now the jewels:

Well assuming you have enough magery to recall, I added 40 swords and tactics add in you need an ax equipped to lumberjack, addd extra dmg.  But he still wasent hitting often or even hard.  So I made my jewels like this (remember they are blank jewels)

Bracelet:
tactics and swords +13
dmg inc 23%

Ring:
tactics and sword +13%

I forgot the other mod I put on, I think it was hit chance or something, but the tactics and swords was my main idea.  Remember, this is for a bot who isint casting a whole lot, so you dont need LMC, FC or FCR, just to be able to fight these annoying ass creatures that would otherwise kill an afk miner or lumberjacker.

As for a weapon, I already had a spell channeling ax that was a repond slayer, so I just equipped that.

For lumberjacking you WILL NEED a spell channeling AXE!  Slayer is preferable, but just an all around good weapon is the best, remember spell channeling so it dont un-equip.

There you have it: 70's Psy 100% LRC suit with extra mods to help your miner/lumberjacker defend himself.  :)

126
Scripting Chat / Magic Residue Creator. Help Appriciated.
« on: September 28, 2009, 09:19:38 PM »
Okay, so if you make oak bows and then unravel them, they yield Magic Residue for training.  Actually works with any boards that are colored.  So, here is the script I want to write, but since I have been out of the loop for so long, I completely forgot almost everything.  But, here is the basic outline...

Bag on ground with Ingots to make fletchers tools, all colored boards to make bows only and where magical residue is deposited. 
Uses either unravel bag or unravel from gump.
Grabs boards (450 is what I do by hand)
Checks resources in pack, like tools, boards ect
After each unravel places residue in secure (if using unravel bag).
Checks for weight, when it grabs more boards, also puts residue in secure.

This is the basic outline of the script.  Like I said, I have been out of the loop for awhile now, so if anyone can contribute to code here it would be great.  This is a script I am sure EVERYONE would enjoy and want.  I am pretty sure this can be done with colored ingots too.  But as a community, I am sure all the minds here adding stuff this could be done quite quick.  I setup I think all the variables needed and the subs to go with them.  Feel free to delete, condense or add to.  I dont want any credit for this, just would like to get it up and running semi in what I got written here so I can re-learn.  Dont have time to work on this tonight, wont be for a few days before I can sit down and play (daughter is 3, so shes a handful).

So, who is willing to help?  Below is my basic code and outline with explainations.

Code: [Select]
set %tinkertools GTL_KTL_JTL
set %backpack ??????
set %magicresidue ??????
set %fletchertools UFG
set %boards TLK
set %boardcount 450
set %ironingots ENK
set %maxfletchertools 10
set %maxtinkertools 10
gosub TargetSecure

MainLoop:
gosub CheckForResources
gosub FindFletcherTool
gosub UseFletcherTool
gosub Unravel

sub CheckForResources
(Check for boards (in pack and secure), Fletcher Tools, Tinker Tools (in pack and secure), if Magic Residue in pack move to secure, move boards to pack, ect)
if %maxfletchertools < 2
gosub MakeFletcherTools

if %maxtinkertools < 2
        gosub MakeTinkerTools

if %ironingots < 10
        gosub End

if %packboards < 10
        gosub GetBoards

gosub CheckPackResidue

if %magicresidue #true
        gosub MoveResidue

return

sub FindFletcherTool
(find the fletcher tools duh lol)
return

sub UseFletcherTool
(make a bow)
return

sub Unravel
(use imbuing gump to unravel bow and move residue into secure)
return

sub TargetSecure
(I have no idea how to do this, but it will open a target cursor and recorde your secure container with boards, ingots and tinker tools ect)
return

sub MakeFletcherTools
(make tools)
return

sub MakeTinkerTools
(make tools)
return

sub GetBoards
(Check secure for boards, if it has some, move to pack, if not gosub end)
return

sub End
(ending the script due to lack of resources)
end

sub GetBoards
(Get Boards from Secure, move to pack)
return

sub CheckPackResidue
(check backpack for magic residue, if yes, return #true
return

sub MoveResidue
(move magic residue from pack to secure)
return

127
Well, I have now beaten the following...keep in mind I need advice for a whammy.

DF + Gauntlet, easy and frustrating.
Dreadhorn, super easy
Baraccon, super easy
Lord Oaks, meh
Chief Proxy, long and boring
Rikktor
Mephitis
Semidar

Now is where my problem lies...

The Putrifier:

Anyone got any good strats for this guy?  It seems you just have to get lucky to down him, but maybe I am doing something rong, hes whoopin my butt.

Travesty:

Getting her keys was easy, she was easy until she morphed into me and started using paladin and necro skills.  Is a tamer just the best bet for this ho?  Or can a whammy solo her?  Any tricks?

Lady Mel:

I never actually got to fight her due to the satyres calming me, pricks...

How does grizzle stand up against a whammy?  And how about the crystal palace guy?  I use a soul defiler or whatever it is, so I wirlwind to take care of adds, or momentum strike if its just one.  I am just having some super problems with putrifier and travesty, the others would just be a great help.  Thanks guys.

128
Gold Farming / SUO Autokill/Auto Honor
« on: June 29, 2009, 11:36:42 AM »
I did NOT write this script.  It is based off of the SUO Champ spawn helper, I just changed some lines to use honor instead of discord, and changed msg all kill to attack the creature.  Thanks to Cervaza and anyone else who worked on the SUO Champ spawn helper as this is all their code, I just did some modification to make it be able to auto honor.

Things you will need to run or do with this:
1. Good idea to run a heal script.
2. If you want to loot, run AdvCLAW Lite
3. Give credit to the original writers, you can find the post here in this section for the original code.

To use it on your favorite spot, you will need to add in the ID of what you want to kill in script.

In this line here:
Quote
set %spawn NB_XI_EF_WF_PB_ZM_UF_UGB

Code: [Select]
set %spawn NB_XI_EF_WF_PB_ZM_UF_UGB
set %timer_follow #sCnt

;display Target your Pet
;set #TARGCURS 1
;wait 5
;while #TARGCURS = 1
;  wait 0
;set %PetID #ltargetid
;wait 5

display yesno Use Honor?
if #dispRes = yes
{
  set %discord #TRUE
  set %timer_disco #sCnt
}

; ********** main loop **********

repeat
    gosub LocateCreature %spawn
    if #RESULT <> #FALSE
    {
      set %target #findID
      gosub Attack %target
    }
  finditem %PetID
  ;if #finddist >= 8 && #sCnt > %timer_follow
  ;{
  ;  msg all follow me $
  ;  set %timer_follow ( #sCnt + 8 )
  ;}
until #false

; ********** subs **********

sub LocateCreature
  namespace push
  namespace local LC
  set !spawn %1
  for !i 1 10
  {
    finditem !spawn G_ , !i
    if #FINDCNT > 0
    {
      set #FINDINDEX #RANDOM % #FINDCNT + 1
      namespace pop
      return #FINDID
    }
  }
  namespace pop
return #FALSE

sub Attack
  namespace push
  namespace local ATK
  set !target %1
  finditem !target G_10
  if #findCnt = 0 || #findz > 29
    return
  set #ltargetID !target
  set #ltargetKind 1
  if #sCnt > %timer_disco && %discord = #TRUE
  {
    event macro 49 1 ; honor
    target 3s
    event macro 22 0 ; last target
    set %timer_disco ( #sCnt + 5 )
    wait 10
  }
  event macro 27
  repeat
    finditem !target
  until #findCnt = 0
  wait 5
  namespace pop
  wait 20
return

; ****************** RESERVED FOR FUTURE USE ******************

; Set %spawn_semidar W_BE_UC_UD_YH_N_ ; Imps, Mongbats, gargoyles, harpies, burning gargs, stone gargs
; Set %spawn_mephitis UE_SD_K_J_U_HD_PD_EJ_UI_ ; Scorpions, Giant Spiders, Terathan Warriors, Terathan Drones, Dread spiders, Matriarch, Avengers, PEs
; Set %spawn_rikktor QE_AE_DE_FE_AB_QF_XE_YE_X_DF_CD_DI_ ; Lizardmen, Snakes, Lava lizards, ophidian warriors, Dragons, Ophidian Avengers
; Set %spawn_oaks WH_XI_SH_SC_ ; Pixies, Shadow Wisps, Kirins, Unicorns
; Set %spawn_baracoon XF_VE_IE_OE_HE_LD_BI_RB_UB_ ; ?, Slime, Ratman, Ratman Archer, Ratman Mage, ?, Hellhound
; Set %spawn_niera II_WI_TI_YD_WD_NI_ ; Mummies, Skeletal Knights, Wraiths, Spectres
; Set %spawn_serado IH_DE_GH_PH_HH_FH_ ; Deathwatch Beetle, Lizardmen, Kappa, Revenant Lion, Hiryu, Oni

; set %spawn_all %spawn_semidar , %spawn_mephitis , %spawn_rikktor , %spawn_oaks , %spawn_baracoon , %spawn_niera , %spawn_serado

129
I am sure others like me need some faction kill points on their server to get the faction arties for their whammys, samps or just to get them.  So I decided to make a post where you can request help from other members to make newbies on your shard to kill.

Here is my suggestion how to put your request.

Server you are on:
Faction you are in:
Faction you would like us to make for you to kill:
Time available:
Ways to contact you:

In my case...since I need a few more kills since I am only level 9....

Origin Server, prefer Trinsic healer
Im in Shadowlords Faction
True Brits are easiest to set up.
Usually 4pm to wee hours of the morning...
PM's are best to contact me, since I check here more often than I turn on my Trillian.

So, if anyone can help me, please let me know.

130
General UO Chat / Bug Discussions, walkthroughs ect.
« on: June 17, 2009, 04:20:57 AM »
I know the archery and magery ones are pretty well known, but I also know there are others that are not.  I would like to write some walk throughs for them.  However, I know this isint a bug discussion board either, however TM did mention he was thinking of adding a section for bugs I think it was.  My question is, will this be in the elite section?  I will gladly write up some good walk throughs for these bugs and exploits, but  I think some might as well be put in elite section.  I know I will be a member one day of the elites, so even though I am not one now, I am still all for good cool stuff staying private to preserve it longer.

So, will there be a section in elite?  If yes, would you move my walkthroughs to elite section if requested?  Until I can post there myself that is.  Think I got like 3 or 4 weeks left for my 60 days.

131
UO-Related Tutorials / How To: Whammy Boss Solos!
« on: June 17, 2009, 03:58:15 AM »
This is going to be my first in a long line of walkthroughs for taking down champs and peerless.   I will spruce up bold text and color when I am not so lazy lol.

Basic Whammy controls, for lack of a better word.  Skills to use and when.

You will always be using lightning strike, it is what heals you, the more damage you do, the more you get healed.  Here is a short check list for things to do during the fight.

1. ALWAYS HONOR your target!  <<This is VERY Important>> Perfection increases damage.
2. Always use Enemy of One, this give you more damage.
3. Every single round of attack make sure lightning strike is ready to fire.
4. Before the fight, make sure you case curse weapon!!!  This is how you sap life!!
5. Make sure to recast Curse Weapon as often as needed BEFORE it expires!
6. Carry Protection scrolls!!  I cannot stress this enough!  Always have Protection up!!  You wont fizzle or get interrupted!
7. Use the Bushido skill Counter Attack!  Make sure it is always up!  You may also use Confidence if you like that.
8. If things get hairy!  Use Evasion.

So far I have soloed Doom Gauntlet and Dreadhorn.  I will write write ups as soon as I can in this thread.

132
Player Templates / How to play a Whammy??? Bush wise...
« on: June 13, 2009, 04:54:57 PM »
Okay, so DF kickin my butt and I figured I would post hre and ask.  Forgive me my spelling and grammar and probably memory today if this was answered already.

I do the following....

Honor DF
Run him to the two tile deep spot near room 2 so I only fight him.
Have my tamer off to the side cutting bones on a script (keep getting must wait to perform another action btw)
EOO UP
ConsecrateW UP
CurseW always up
Then lightning strike over and over.

Mana is not the problem here, nor is gear.  I asked earlier in chat about confidence and evade...

When do I use them to be effective?  Should I run CEO's healer for chuggin gheals, trefresh and grapes?

Basicly what is the order you guys do things in?  Im getting owned by 50%, which I think is damn good for a guy who plays a tamer and first boss im trying to fight.  BTW I stomp the asses out of the room bosses.  Minus the ones without mana.

So....should I

LS
LS
LS
LS
Evade
LS
LS
LS
LS
Confidence
LS
LS
ect
ect

????

Im a bit lost lol

Also, what peerless and champ spawns would you guys consider EASIER than DF?  I was thinking of trying Dreadhorn since I find getting the keys easy.  I know Mel and Travisty are easier than a DF.

please help me with when I should use evade and confidence, up till now, I havent been using them at all and I am SURE that is why I am dying.

133
General UO Chat / Whammy Bosses? Which are easy, which not? Why?
« on: June 12, 2009, 01:28:49 PM »
Well after killing two DF the other night, I decided the DF are a hard boss to start with.  So, what bosses are easy and not that hard, compared to real hard?

Mel
Travisty
Dreadhorn
Proxi
Shimmering Effusion
Dark Father
Grizzle

Champs..

Lord Oaks
Baracoon
Semidar
Mephitis
Rikktor
The TW Glade Centuar (provoke and peace ick)


I have only fought DF Mel and DH.  I know getting to Dreadhorn is easy, compared to getting to Shimmering and Grizzle.  So as far as difficulty of the actual boss fights, what would you guys say?  I rank Dark Father as one of the hardest, due to necro spells and spawn adds.  So, shimmering will probably be similar, but Im guessing easier if theres no necro spells.  So what would you guys rank as easy to hard and why?

134
I am trying to figure out my suit, but as far as what properties are needed and which arent needed so much.  So, whats most important?

Defense Chance Increase (I would think this is most important)
Hit Chance Increase (I Would think this second most important, but lightning strike can also negate it, right?)
Damage Increase (I would think this third to have on a suit, cause you mostly have it on weapons)
Lower Mana Cost (Not needed so much as you are a whammy)
Lower Reagent Cost (Cant hurt if its given)
Swing Speed Increase (Always welcomed)

Hit point Increase
Mana Increase
Stamina Increase

Now for item properties questions.  Does slayer and or Enemy of One max out the Damage increase property?

Does the Chiv spell the swing speed one, does that max out SSI?

Now, while fighting Dark Father the other night, I was getting my ass whooped after like 20% HP.  I was EOO, Honor, Lightning strike, lasted a while, but eventually I was always dying.  What is that spell he is casting on me that causes me to damage myself when I hit him?  And how do I get around it?

Got another post coming regarding DF and peerless.

135
UO-Related Tutorials / Stealth Tamer for Champs!
« on: June 09, 2009, 06:18:41 AM »
This is a small template I have for lack of a better excuse, I got bored.  A little nifty as it helps progress champ spawns.

Taming 105
Vet 100
Lore 105
Stealth 100
Hiding 100
Magery 115
Med 100

Gear:
100LRC w/Shadow Dancer Legs
Bird Talisman to bring lore and Taming to 110
Rings to up Magery and other skills to respective levels.

Basicly command Greater Dragon to follow and guard you, walk around champ spawns stealthed.  When GD needs healing, stand on the same tile as hime, heal and re-stealth.  If your targeted, invis yourself and you will be stealthing again.

I advanced Abyss spawn this way, Baracoon, and Unholy Terror.  Also helps if you use SUO Champ spawn helper and add in the monsters for the respective spawn.

Just a little template I thought I would share, its pretty versitile.  you can also use a second tamer and friend his greater dragon.  You cannot attack command, but mobs will attack and dragon will defend, so you can have it follow and guard with your own dragon.

Pages: 1 ... 7 8 [9] 10