Someone know how to do this quest

You need help? Check the general infos or post your question here!

Moderator: Game Administrators

User avatar
LostKnight
Posts: 6400
Joined: Sat Sep 09, 2017 8:02 pm
Location: Rockhiem nord i Steinhus nær Kedington

Re: Someone know how to do this quest

Post by LostKnight »

@ LIZARDKING

According to quest log - one of each:

Code: Select all

chat_npc Congratulations! You've become a champion. Here's your prize.

check
	if(isQuestFinished(1670) && (hasItem(560) || hasItem(561))) {
		return true;
	} else {
		return false;
	}
execute
	import com.rpg.logic.WeaponType;
	
	addXp(2000000000);

	if(getWeaponType() == WeaponType.AXE) {
		if (hasItem(560) && hasItem(561)) {
			addItem(10543);
		} else {
			addItem(543);
		}
	} else if(getWeaponType() == WeaponType.BOW) {
		if(hasItem(560) && hasItem(561)) {
			addItem(10428);
		}else {
			addItem(428);
		}
	} else if(getWeaponType() == WeaponType.SWORD) {
		if(hasItem(560) && hasItem(561)) {
			addItem(10430);
		}else {
			addItem(430);
		}
	} else if(getWeaponType() == WeaponType.CLUB) {
		if(hasItem(560) && hasItem(561)) {
			addItem(10544);
		}else {
			addItem(544);
		}
	} else if(getWeaponType() == WeaponType.WAND) {
		if(hasItem(560) && hasItem(561)) {
			addItem(10427);
		}else {
			addItem(427);
		}
	}

	removeItem(560);
	removeItem(561);
	finishQuest(1670);
end

Code: Select all

560 "Silver Medal" drops=Black Dragon(25.0%) 
561 "Golden Medal" drops=Black Dragon(5.0%) 
2 gold get you: 10430 - Black Sword +1
else you get: 430 - Black Sword

Not seen in quest: 20430 - Black Sword +2

However I see, elsewhere, there is "someplace" where a (430) can be improved to a +2 (20430) for 1b
I am always AFK!
I am LK, A Friendly Knight.
User avatar
SellSword
Posts: 4036
Joined: Tue Aug 29, 2017 11:16 pm
Location: Ardesia

Re: Someone know how to do this quest

Post by SellSword »

What's the level cap on the weapon in the coffin after freeing the ghost of Ryaca?
Old soldiers never die, they just fade away.
User avatar
generous11
Posts: 431
Joined: Sat Apr 08, 2017 3:06 pm
Location: Lebanon

Re: Someone know how to do this quest

Post by generous11 »

LostKnight wrote: Tue Jan 01, 2019 9:32 pm @ LIZARDKING

According to quest log - one of each:

Code: Select all

chat_npc Congratulations! You've become a champion. Here's your prize.

check
	if(isQuestFinished(1670) && (hasItem(560) || hasItem(561))) {
		return true;
	} else {
		return false;
	}
execute
	import com.rpg.logic.WeaponType;
	
	addXp(2000000000);

	if(getWeaponType() == WeaponType.AXE) {
		if (hasItem(560) && hasItem(561)) {
			addItem(10543);
		} else {
			addItem(543);
		}
	} else if(getWeaponType() == WeaponType.BOW) {
		if(hasItem(560) && hasItem(561)) {
			addItem(10428);
		}else {
			addItem(428);
		}
	} else if(getWeaponType() == WeaponType.SWORD) {
		if(hasItem(560) && hasItem(561)) {
			addItem(10430);
		}else {
			addItem(430);
		}
	} else if(getWeaponType() == WeaponType.CLUB) {
		if(hasItem(560) && hasItem(561)) {
			addItem(10544);
		}else {
			addItem(544);
		}
	} else if(getWeaponType() == WeaponType.WAND) {
		if(hasItem(560) && hasItem(561)) {
			addItem(10427);
		}else {
			addItem(427);
		}
	}

	removeItem(560);
	removeItem(561);
	finishQuest(1670);
end

Code: Select all

560 "Silver Medal" drops=Black Dragon(25.0%) 
561 "Golden Medal" drops=Black Dragon(5.0%) 
2 gold get you: 10430 - Black Sword +1
else you get: 430 - Black Sword

Not seen in quest: 20430 - Black Sword +2

However I see, elsewhere, there is "someplace" where a (430) can be improved to a +2 (20430) for 1b
That quest is at lvl 1k+ at underground devils as well. if you have 1500+1 weapon will get you 1500+2 weapon
and if 1500 weapon will get you 1500+1.
best regards.
super arch "1227"
super axe "111"
generous11 "110"
super club "178"
super sord "84"

Clans: [SK], [ryo]
"Never say never!" :)
User avatar
LIZARDKING
Posts: 230
Joined: Tue Feb 10, 2015 5:31 pm

Re: Someone know how to do this quest

Post by LIZARDKING »

Great job setting me/ that qwest straight. Once Gaulfk or others trade medals there is no turning back. So be sure to wait until you at the desired level and medals
User avatar
guafk
Posts: 69
Joined: Fri Oct 27, 2017 5:43 pm

Re: Someone know how to do this quest

Post by guafk »

LIZARDKING wrote: Tue Jan 01, 2019 8:37 pm Guafk. Here is coord where black dragons will spawn. It will cost you gold for each spawn. You might double check me, but I think you only want to collect 2 gold medals to obtain the +2 award. I think silver medals only awards +1. It has been a long time since I finished this qwest. Coordinate is map 188.188/ pos 20.90. Good luck
Thanks for your help,i forgot with money before,lol,i finished it now and got 1500 wand.thank you.
Industry is good at diligence, waste in play; action in thinking, destroyed in following。
NightBaby
Posts: 509
Joined: Sat Jan 28, 2017 6:43 pm
Location: Candy Land

Re: Someone know how to do this quest

Post by NightBaby »

SellSword wrote: Tue Jan 01, 2019 9:40 pm What's the level cap on the weapon in the coffin after freeing the ghost of Ryaca?
2k+2 last I knew
Does life really get better?
User avatar
Leone
Posts: 5065
Joined: Wed Aug 28, 2013 12:00 am
Location: Ashdown Village

Re: Someone know how to do this quest

Post by Leone »

NightBaby wrote: Wed Jan 02, 2019 6:05 pm
SellSword wrote: Tue Jan 01, 2019 9:40 pm What's the level cap on the weapon in the coffin after freeing the ghost of Ryaca?
2k+2 last I knew
Correct

viewtopic.php?f=12&t=15373&p=95132&hili ... aca#p95132
User avatar
SellSword
Posts: 4036
Joined: Tue Aug 29, 2017 11:16 pm
Location: Ardesia

Re: Someone know how to do this quest

Post by SellSword »

Awesome, thank you both! I should have searched the forum myself on that one...

Anyhow, my question wasn't intended as an off-topic one (though I did a poor job pointing that out), but given the level of a player that there could be an "alternative" option of sorts to get a weapon. Still, I would not advocate skipping quests, however optional they may appear on first glance as they may be a requirement for something down the road.

-1 forum familiarity for me! ;)
Old soldiers never die, they just fade away.
Post Reply