Page 1 of 2

How can i train discordance here?

Posted: December 8th, 2016, 11:18 pm
by Rochandes
How can i train discordance here?

at the old times i was training like;

*Disco , then mount and dismount back and disco again....but it doesnt work here
*Disco , staying at gate , travel to another place then come back and disco....doesnt work here neither
*i also tried on hiryus that i lured to dock boats at isamu jima...but discordance seems stay long last and hard to gain like this.
*also tried cu sidhes but hard to stay alive in there with many creatures around.

...sooooo how can i train discordance skill in here? is there any easy way to train?

thank you :|

Re: How can i train discordance here?

Posted: December 8th, 2016, 11:21 pm
by Amish Hammer
I forget how i trained upto 100, but when i was going from 100-120 i went to the serp dragons and just discorded all of them, left for a minute, then came back

Re: How can i train discordance here?

Posted: December 8th, 2016, 11:28 pm
by april0395
I think you invis yourself for 25 seconds or so to break the discord. I can't remember, it's been a long time since I trained it! :D

Re: How can i train discordance here?

Posted: December 8th, 2016, 11:32 pm
by Loler
i think its 16 seconds might be 18.

discord all targets invis for 16 seconds discord again.

Re: How can i train discordance here?

Posted: December 9th, 2016, 9:57 am
by Tiffany
If you're a tamer it's slightly easier to train. I trained it entirely in my house with pets using the dismount -> Discord -> mount for 17 seconds method.

Pets I used were: Giant Beetle to 80 or so -> Nightmare all the way to 115 -> Greater Dragon to 120 (using hiding instead of mounting here).

It took a really short amount of time. The trick is to soulstone off all unnecessary skills so you literally only have 100 Music + the Discordance you're training as having a higher total skill cap makes skills harder to train in general. This will be painfully slow if you're approaching the skill cap. If you're above GM Music already this will make training it harder also. Be sure you're using a normal, non-exceptional musical instrument too.

UOSteam macro I used:

Code: Select all

clearjournal
if mounted
  togglemounted
endif
useskill "Discordance"
@getenemy "any" "closest"
waitfortarget 3000
if targetexists and @inrange 'enemy' 2
  @target 'enemy'
endif
pause 1000
if @injournal "jarring"
  togglemounted
  pause 17000
elseif @injournal "already"
  togglemounted
  pause 20000
else
  pause 5000
endif
Replace the two last "togglemounted" commands with this if using pets that can't be mounted:

Code: Select all

useskill 'hiding'
Hiding works 100% of the time in your own house.

This is one of the easiest methods to train this skill quickly and AFK. It just relies on having those pets to hand or another character with taming who can bring those pets to your house and soulstones if your character already has other stuff trained.

Re: How can i train discordance here?

Posted: December 18th, 2016, 8:11 am
by Frasier
Ok I went through this and added disco to my tamer.

I got ~27 skill points from npc and then sarted to disco... that 27 skill level is not enough for a giant beetle, so I used 1) Forest Ostard and 2) Polar Bear to get my skill up to ~51 (yeah, you could use jewelry but I was lazy)

Then I went with a Giant Beetle (-> 80) and Cu up to 116, the rest with a GD.

That macro works fine. Ty :)

Re: How can i train discordance here?

Posted: December 18th, 2016, 5:45 pm
by The Silvertiger
In the future, you could make a new char with 50 disco.

Re: How can i train discordance here?

Posted: August 10th, 2017, 7:57 pm
by formoza
seems this method does not work anymore... how can I train discordance nowadays?

Re: How can i train discordance here?

Posted: August 10th, 2017, 8:07 pm
by Amish Hammer
I dont have my macro anymore since my hard drive got corrupted, but when i was training disco up to 120, at the 100 mark i went to serps pass in ilsh and pulled a serp dragon around the bend so it was by itself. then i just used that over and over to get to 120.

Re: How can i train discordance here?

Posted: August 10th, 2017, 8:13 pm
by The Silvertiger
I have a script. I will upload it tomorrow. Basically, I trained from my house. I used a hell hound, a blue beetle, a nightmare, and a greater dragon to train disco from the safety of my malas home.

Re: How can i train discordance here?

Posted: August 10th, 2017, 10:08 pm
by Bama
Whatever script or macro or method you use you should always........

Lock music best to lock at 100.0 ( no bonus)

Use non exceptional instruments (no bonus)
Or the opposite slayer to whatever you are using to train

You don't want anything to give you a bonus because you will only gain if you can fail. If you can discord something 100% of the time you will not gain

Or
Go get discorded in the Weald and discord things there

Re: How can i train discordance here?

Posted: August 13th, 2017, 10:14 pm
by The Silvertiger
Finally, here's the macro.

My setup:
Be inside a house, or be on a housing plot, that you are friend access or higher. Buy instruments from a npc. Press play. Target creature you wish to use for training. I used a hell hound, a giant beetle, a nightmare, and a greater dragon. I am available for assistance with this macro.

Code: Select all

for 5
  //Create Instrument List if it does not exist
  if not listexists 'instrumentlist'
    @createlist 'instrumentlist'
  endif
  clearjournal
  //Add below different types of instruments to use -- Common Ones are Added already
  //Standing Harp
  @pushlist 'instrumentlist' 0xeb1
  //Lap Harp
  @pushlist 'instrumentlist' 0xeb2
  //Lute
  @pushlist 'instrumentlist' 0xeb3
  //Drum
  @pushlist 'instrumentlist' 0xe9c
  //Tambourine
  @pushlist 'instrumentlist' 0xe9d
  //Tambourine with red tassle
  @pushlist 'instrumentlist' 0xe9e
  //Select an instrument automatically to use
  for 0 to 'instrumentlist'
    @findtype instrumentlist[]
    @setalias 'instrument' 'found'
  endfor
  if not @findalias 'discotarget1' or not inrange 'discotarget1' 20
    headmsg 'Select first discotarget'
    promptalias 'discotarget1'
  endif
  headmsg 'Targeting 1'
  for 0 to 'instrumentlist'
    useobject 'instrument'
    useskill 'Discordance'
    @target 'discotarget1'
    while  @injournal 'You play jarring' or  @injournal 'That creature is already'
      pause 8500
      msg 'hide' 3
      useskill 'hiding'
      pause 17000
      clearjournal
    endwhile
  endfor
  msg 'all follow me' 325

Re: How can i train discordance here?

Posted: August 13th, 2017, 11:28 pm
by AR9221
Rochandes wrote:How can i train discordance here?
*Disco , then mount and dismount back and disco again....but it doesnt work here
it does, you need to keep mounted for 15 seconds or something, then the effect fades.

Re: How can i train discordance here?

Posted: August 13th, 2017, 11:42 pm
by Bama
AR9221 wrote:
it does, you need to keep mounted for 15 seconds or something, then the effect fades.

No it does not


http://www.uogdemise.com/community/view ... =4&t=11150

The discordance effect is no longer removed by mounting a pet. If the bard stays within range of the mounted pet, the pet will remain discorded.

Re: How can i train discordance here?

Posted: September 10th, 2017, 4:14 pm
by khaleesi
The Silvertiger wrote:Finally, here's the macro.

My setup:
Be inside a house, or be on a housing plot, that you are friend access or higher. Buy instruments from a npc. Press play. Target creature you wish to use for training. I used a hell hound, a giant beetle, a nightmare, and a greater dragon. I am available for assistance with this macro.

Code: Select all

for 5
  //Create Instrument List if it does not exist
  if not listexists 'instrumentlist'
    @createlist 'instrumentlist'
  endif
  clearjournal
  //Add below different types of instruments to use -- Common Ones are Added already
  //Standing Harp
  @pushlist 'instrumentlist' 0xeb1
  //Lap Harp
  @pushlist 'instrumentlist' 0xeb2
  //Lute
  @pushlist 'instrumentlist' 0xeb3
  //Drum
  @pushlist 'instrumentlist' 0xe9c
  //Tambourine
  @pushlist 'instrumentlist' 0xe9d
  //Tambourine with red tassle
  @pushlist 'instrumentlist' 0xe9e
  //Select an instrument automatically to use
  for 0 to 'instrumentlist'
    @findtype instrumentlist[]
    @setalias 'instrument' 'found'
  endfor
  if not @findalias 'discotarget1' or not inrange 'discotarget1' 20
    headmsg 'Select first discotarget'
    promptalias 'discotarget1'
  endif
  headmsg 'Targeting 1'
  for 0 to 'instrumentlist'
    useobject 'instrument'
    useskill 'Discordance'
    @target 'discotarget1'
    while  @injournal 'You play jarring' or  @injournal 'That creature is already'
      pause 8500
      msg 'hide' 3
      useskill 'hiding'
      pause 17000
      clearjournal
    endwhile
  endfor
  msg 'all follow me' 325
Very useful!! Thanks!