Page 2 of 2

Re: Someone know how to do this quest

Posted: Tue Jan 01, 2019 9:32 pm
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

Re: Someone know how to do this quest

Posted: Tue Jan 01, 2019 9:40 pm
by SellSword
What's the level cap on the weapon in the coffin after freeing the ghost of Ryaca?

Re: Someone know how to do this quest

Posted: Tue Jan 01, 2019 10:18 pm
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.

Re: Someone know how to do this quest

Posted: Tue Jan 01, 2019 10:51 pm
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

Re: Someone know how to do this quest

Posted: Wed Jan 02, 2019 2:22 am
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.

Re: Someone know how to do this quest

Posted: Wed Jan 02, 2019 6:05 pm
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

Re: Someone know how to do this quest

Posted: Wed Jan 02, 2019 6:33 pm
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

Re: Someone know how to do this quest

Posted: Wed Jan 02, 2019 8:44 pm
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! ;)