-
Horned Tail Necklace Quest.
TESTED AND WORKS.
Change whatever you like.
This is a quest. That gives Horned Tail Necklace
Coded bye PureLock and Ideas from Teamr3.net ---Thanks airflow0 for fixing a line in the code.
This is what happens in script.
You need 200 Broken Horns and 100 Charm of Undeads. You also need 1 Event Ticket (Dropped bye Horntail.)
In return you get a Horned Tail Necklace
Run This in MySQL: This makes a 1,000 chance of dropping event ticket from each part of horntail. (Might need server restart.) (This is a rare chance of drop. For some servers with low drop rates.)
Code:
INSERT INTO `monsterdrops` VALUES ('293870', '8810008', '5220001', '1000');
INSERT INTO `monsterdrops` VALUES ('293871', '8810009', '5220001', '1000');
INSERT INTO `monsterdrops` VALUES ('293872', '8810006', '5220001', '1000');
INSERT INTO `monsterdrops` VALUES ('293873', '8810007', '5220001', '1000');
INSERT INTO `monsterdrops` VALUES ('293874', '8810005', '5220001', '1000');
INSERT INTO `monsterdrops` VALUES ('293875', '8810004', '5220001', '1000');
INSERT INTO `monsterdrops` VALUES ('293876', '8810003', '5220001', '1000');
INSERT INTO `monsterdrops` VALUES ('293877', '8810002', '5220001', '1000');
INSERT INTO `monsterdrops` VALUES ('293878', '8810001', '5220001', '1000');
INSERT INTO `monsterdrops` VALUES ('293879', '8810000', '5220001', '1000');
Code:
//Horned Tail Necklace Quest.
importPackage(net.sf.odinms.client);
var status = 0;
function start() {
status = -1;
action(1, 0, 0);
}
function action(mode, type, selection) {
if (mode == -1) {
cm.dispose();
} else {
if (status >= 2 && mode == 0) {
cm.sendOk("Rawr!?");
cm.dispose();
return;
}
if (mode == 1)
status++;
else
status--;
if (status == 0) {
cm.sendNext("Hello #h #, I need some items really badly. I will give you a#bHorned Tail Necklace#b if you give me \r\n#v4000274# 200 Broken Horns \r\n#v4000008# 100 Charm of the Undeads and... \r\n#v5220001# 1 Event Ticket. ");
}
else if (status == 1) {
if (cm.haveItem(4000008, 100) && cm.haveItem(4000274, 200) && cm.haveItem(5220001, 1)) {
cm.sendYesNo("I am so glad you have them! Here is the \r\n#v1122000# #bHorned Tail Necklace#k for you.");
}
else if (!cm.haveItem(4000008, 100)) {
cm.sendOk("#h #, You dont have the required items. You are missing some... \r\n#v4000008# Charm of the Undead. Find them in Ant Tunnel");
cm.dispose();
}
else if (!cm.haveItem(4000274, 200)) {
cm.sendOk("#h #, You dont have the required items.You are missing some... \r\n#v4000274# Broken Horns. They are dropped bye Skelegons over in Leafre.");
cm.dispose();
}
else if (!cm.haveItem(5220001, 1)) {
cm.sendOk("#h #, You dont have the required items.You are missing the \r\n#v5220001# Event Ticket! They are dropped bye Horned Tail.");
cm.dispose();
}
}
else if (status == 2) {
cm.gainItem(4000274, -200);
cm.gainItem(4000008, -100);
cm.gainItem(5220001, -1);
cm.gainItem(1122000, 1);
}
}
}
Sorry if no one likes it. This is just for people that may need it or think it is cool.
IMAGES
http://i173.photobucket.com/albums/w...ed-preview.jpg
http://i173.photobucket.com/albums/w...23-preview.jpg
http://i173.photobucket.com/albums/w.../1-preview.jpg
-
Re: [Small-Release]Horned Tail Necklace Quest.
-
Re: [Small-Release]Horned Tail Necklace Quest.
Quote:
Originally Posted by
xiaojintai
wow i will test it~
Thanks!! This is my first release too....
EDIT: Use new script.. it looks better when people talk to NPC.
-
Re: [Small-Release]Horned Tail Necklace Quest.
-
Re: [Small-Release]Horned Tail Necklace Quest.
Quote:
Originally Posted by
begginer01
nice!
wow, thanks a lot. Make sure you use new script.
Please test.
-
Re: [Small-Release]Horned Tail Necklace Quest.
hmm pure wad npc did u put in~
-
Re: [Small-Release]Horned Tail Necklace Quest.
Quote:
Originally Posted by
xiaojintai
hmm pure wad npc did u put in~
I used... 9010005 that is "Diane". Just use !npc 9010005 Until you can put in permenatly.
I would use Mia, Moss, Max, or Ace fo Hearts though. (Leafre people because of Horntail and skellys.)
-
Re: [Small-Release]Horned Tail Necklace Quest.
woo nice it works thanks :)
-
Re: [Small-Release]Horned Tail Necklace Quest.
Quote:
Originally Posted by
xiaojintai
woo nice it works thanks :)
No Problem.. xD
ADDED: Pics.
EDIT: Please Use newer script... -_- I fixed something small in text.
-
Re: [Small-Release]Horned Tail Necklace Quest.
OMFg..... should i go to titan or to odin
-
Re: [Small-Release]Horned Tail Necklace Quest.
Quote:
Originally Posted by
Pmang
OMFg..... should i go to titan or to odin
This is for odin... and i would use odinms because we have PvP and almost pets. (I think pets.. -_-)
-
Re: [Small-Release]Horned Tail Necklace Quest.
sweet release >_<
its about time for me to remove HT Necklace from Lith Harbour Pot shop LOL ~ xD
~dXm
Quote:
Originally Posted by
PureLock
This is for odin... and i would use odinms because we have PvP and almost pets. (I think pets.. -_-)
WAAH? PVP? how do you get it to work? >_< ~ im desperate for it xD
~dXm
-
Re: [Small-Release]Horned Tail Necklace Quest.
Quote:
Originally Posted by
darkXmatt
sweet release >_<
its about time for me to remove HT Necklace from Lith Harbour Pot shop LOL ~ xD
~dXm
WAAH? PVP? how do you get it to work? >_< ~ im desperate for it xD
~dXm
airflow0 (Best coder on RageZone.)
FInd his Dev. thread.
-
Re: [Small-Release]Horned Tail Necklace Quest.
Quote:
Originally Posted by
PureLock
airflow0 (Best coder on RageZone.)
FInd his Dev. thread.
Yessir : D ~
thanks again ^ ^
~dXm
-
Re: [Small-Release]Horned Tail Necklace Quest.
Quote:
Originally Posted by
darkXmatt
Yessir : D ~
thanks again ^ ^
~dXm
I accepted you friends invite.... I have no friends. ='(
On Topic:
Added: One more pic.
Fixed: It only took away 50 of your zombie mushroom things. No takes 100.
Thanks for using guys.
-
Re: [Release]Horned Tail Necklace Quest.
Can you give me the permission to edit it so you have to get a rarer items in other to complete the quest and the chat?
-
Re: [Release]Horned Tail Necklace Quest.
Quote:
Originally Posted by
iFLON
Can you give me the permission to edit it so you have to get a rarer items in other to complete the quest and the chat?
umm. I said in topic you can change whatever you want.
-
Re: [Release]Horned Tail Necklace Quest.
UPDATE::: Added new image proving it works..
-
Re: [Release]Horned Tail Necklace Quest.
-
Re: [Release]Horned Tail Necklace Quest.
-
Re: [Release]Horned Tail Necklace Quest.
Quote:
Originally Posted by
Regurgitate
Wow! Nice.!
oooh Thanks! I am trying to release a new version that allows you to do a quest for The HT Necklace power ups in the same NPC. Can't get it to work though... and airflow0 won't help me. ='(
So i might release on seperate NPC if anyone minds.
-
Re: [Release]Horned Tail Necklace Quest.
-
Re: [Release]Horned Tail Necklace Quest.
Quote:
Originally Posted by
omgitsparm
Might use it
Sweet. I was looking for a cool pvp server to play. So i was looking through some sites.
I saw 3 sites with News saying that they have a new Horntail quest...
xD I like releasing stuff.
-
Re: [Release]Horned Tail Necklace Quest.
-
Re: [Release]Horned Tail Necklace Quest.
Quote:
Originally Posted by
SavageSteez
Nice bro.
Thanks... i just need to get the Dragon Stones working...
I don't want to make a new NPC for it...