Issue information

Issue ID
#6790
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Oct 15, 2012 14:50
Last Post
Masao
Jun 13, 2013 21:34
Confirmation
N/A

Hercules Elf Bot - Oct 15, 2012 14:50

Originally posted by [b]dastgirpojee[/b]
Please Check this mistakes!
[CODE] } else if (checkquest(9157) >= 0) {
mes "[Sage Kasyapa]";
mes "There is something";
mes "I wish to give to you";
mes "as a reward for your help.";
mes "Please, it would honor us if you would take it.";
next;
specialeffect2 EF_PNEUMA;
mes "[Sage Kasyapa]";
mes "The reason I asked you to embark";
mes "on this important mission is";
mes "because of this feather.";
mes "Handed down from generation to";
mes "generation, the legendary origin of";
mes "the crown is this feather...";
next;
mes "[Sage Kasyapa]";
mes "I saw this feather begin to shine";
mes "when you came here.";
mes "I knew you were a person who";
mes "would endeavour to help us.";
mes "On behalf of my people,";
mes "I give my thanks.";
next;
mes "[Sage Kasyapa]";
mes "Also, the feather you received";
mes "isn't just valuable on it's own,";
mes "it also is an acknowledgment from our tribe.";
next;
mes "[Sage Kasyapa]";
mes "Like ^C35817Krakatau Volcano^000000, when you";
mes "venture into dangerous areas like";
mes "that, if you display this feather,";
mes "you can get help from the tribe.";
mes "Anyway, I really thank you.";
set dewata_legend,5;
erasequest 9157;
[b]getitem 6406,1;
[/b] close; }[/CODE]
According to the Lua of kRO, its

[CODE][9157] = {
NPCFromName = [[Tribal Chief Paiko]],
NPCFromMap = [[dew_in01]],
NPCFromSpr = [[4_M_DEWZATICHIEF]],
NPCFromX = 15,
NPCFromY = 49,
NPCToName = [[Sage Kasyapa]],
NPCToMap = [[dew_in01]],
NPCToSpr = [[4_M_DEWZATIMAN]],
NPCToX = 22,
NPCToY = 48,
Item = [[]],
PrizeItem = [[ < image = "6405">Cendrawasih Feather<\end> (1)]],
Title = [[Certification Award]],
Info = [[^0000FFTribal Chief Paiko^000000Talk to Sage Kasyapa: "^404040He will give Certification Award,Then talk to Chief Again ^000000"]],
QuickInfo = [[]],
Hunt1 = [[]],
Hunt2 = [[]],
Hunt3 = [[]],
Time = [[0]],
LV = [[0]],
},,[/CODE]
So the getitem 6406 should be getitem 6405 according to lua.

Another One:
[CODE]
mes .@n$;
mes "Ah, the next person whom I want";
mes "the ^4AA02CSatay^000000 delivered to is someone";
mes "who stays across from the river,";
mes "the ^0000FFTribe Manager^000000.";
next;
mes .@n$;
mes "To this end, I will give you 2";
mes "more servings of ^4AA02CSatay^000000.";
next;
mes .@n$;
mes "If you are attracted by the aroma";
mes "of the ^4AA02CSatay^000000, you may eat one.";
mes "But if you eat more you won't be";
mes "able to share ^4AA02CSatay^000000 with our friends.";
changequest 9159,9160;
[b]getitem 11533,2;[/b]
close; }
[/CODE]
But According to Lua it should be
[CODE]
[9160] = {
NPCFromName = [[Tribal Chief Paiko]],
NPCFromMap = [[dew_in01]],
NPCFromSpr = [[4_M_DEWZATICHIEF]],
NPCFromX = 15,
NPCFromY = 49,
NPCToName = [[Tribe Warrior]],
NPCToMap = [[dew_fild01]],
NPCToSpr = [[4_M_DEWZATIMAN]],
NPCToX = 185,
NPCToY = 300,
Item = [[ < image = "11533">Satay<\end> (1)]],
PrizeItem = [[ < image = "11533">Satay<\end> (1)]],
Title = [[Deliver the Satay(2)]],
Info = [[^0000FFTribal Chief Paiko^000000 Task: "^404040Deliver the Satay to Tribe Warrior^000000"]],
QuickInfo = [[]],
Hunt1 = [[]],
Hunt2 = [[]],
Hunt3 = [[]],
Time = [[0]],
LV = [[0]],
},
[/CODE]
Only 1

3rd:
[CODE]
mes .@n$;
mes "Oh, you delivered it!";
mes "Last person to deliver ^4AA02CSatay^000000 to is";
mes "the ^0000FFBorobudur Temple Manager^000000, who is";
mes "on ^C35817Dewata Island^000000.";
next;
mes .@n$;
mes "I will give you 2 more ^4AA02CSatay^000000.";
next;
mes .@n$;
mes "And just like before, don't give";
mes "in to the smell and try not to eat the ^4AA02CSatay^000000.";
changequest 9163,9164;
getitem 11533,2;
close; }
[/CODE]
According to lua it should be getitem 11533,1;
9164 Says
[CODE]
[9164] = {
NPCFromName = [[Tribal Chief Paiko]],
NPCFromMap = [[dew_in01]],
NPCFromSpr = [[4_M_DEWZATICHIEF]],
NPCFromX = 15,
NPCFromY = 49,
NPCToName = [[Borobudur Temple Manager]],
NPCToMap = [[dewata]],
NPCToSpr = [[4_M_DEWMAN]],
NPCToX = 78,
NPCToY = 192,
Item = [[ < image = "11533">Satay<\end> (1)]],
PrizeItem = [[ < image = "11533">Satay<\end> (1)]],
Title = [[Deliver the Satay(4)]],
Info = [[^0000FFTribal Chief Paiko^000000: "^404040Deliver the Satay to Borobudur Temple Manager.^000000"]],
QuickInfo = [[]],
Hunt1 = [[]],
Hunt2 = [[]],
Hunt3 = [[]],
Time = [[0]],
LV = [[0]],
},
[/CODE]

Last one 4th:
[CODE]
mes "You've done good work.";
mes "Whatever you do in the future, I";
mes "wish for you to have a life which";
mes "is full of fortune and joy";
mes "As Chief of the ^C35817Jaty Tribe^000000, I wish";
mes "you the best of luck!!";
set dewata_legend,6;
erasequest 9165;
getitem 11533,5;
getitem 18520,1;
[/CODE]
Quest 9165 LUA Says
[CODE]
[9165] = {
NPCFromName = [[Borobudur Temple Manager]],
NPCFromMap = [[dewata]],
NPCFromSpr = [[4_M_DEWMAN]],
NPCFromX = 78,
NPCFromY = 192,
NPCToName = [[Tribal Chief Paiko]],
NPCToMap = [[dew_in01]],
NPCToSpr = [[4_M_DEWZATICHIEF]],
NPCToX = 15,
NPCToY = 49,
Item = [[]],
PrizeItem = [[ < image = "18520">Jaty Crown<\end> (1)]],
Title = [[Get the Prize from Tribal Chief Paiko]],
Info = [[^0000FFBorobudur Temple Manager^000000: "^404040Thanks for Delivering, Now go to Tribal Chief Paiko to get the rewards.^000000"]],
QuickInfo = [[]],
Hunt1 = [[]],
Hunt2 = [[]],
Hunt3 = [[]],
Time = [[0]],
LV = [[0]],
},
[/CODE]
According to Lua, There is No Satay Rewarded.

This post has been edited by dastgirpojee on Oct 16, 2012 12:13

Hercules Elf Bot - Oct 15, 2012 19:27

Originally posted by [b]Spre[/b]
what lua file are you looking in for that, I checked mine but did not see those lines. Then again I am using files that are probably old from the lua project,.

Hercules Elf Bot - Oct 15, 2012 20:00

Originally posted by [b]Spre[/b]
ok I see it, I can confirm it if these lua files come from kro

Hercules Elf Bot - Oct 16, 2012 12:06

Originally posted by [b]dastgirpojee[/b]
I am using data.grf luas.
I translated them here [url="http://rathena.org/board/topic/72514-dewata-quest-translated-luas/"]http://rathena.org/board/topic/72514-dewata-quest-translated-luas/[/url]
Please don't use those old , maybe they don't have it.

This post has been edited by dastgirpojee on Oct 16, 2012 12:13

Hercules Elf Bot - Oct 18, 2012 5:35

Originally posted by [b]Spre[/b]
kRo information canot be found by me, the iRO version is what we use, so it needs more information before it can be done.

Hercules Elf Bot - Oct 18, 2012 13:44

Originally posted by [b]dastgirpojee[/b]
Do One thing Extract Lua's from data.grf[Updated one please]. And Find Quest ID 9165,9164,9160 and 9157. And Find [CODE][color=#660066][size=2]Item[/size][/color][color=#000000][size=2] [/size][/color][color=#666600][size=2]=[/size][/color][color=#000000][size=2] [/size][/color][color=#666600][size=2][[[/size][/color][color=#000000][size=2] [/size][/color][color=#666600][size=2]<[/size][/color][color=#000000][size=2] image [/size][/color][color=#666600][size=2]=[/size][/color][color=#000000][size=2] [/size][/color][color=#008800][size=2]"11533">[/size][/color][/CODE][color=#666600][size=2]in that Quest [/size][/color]
There you will see
[CODE][color=#660066][size=2]Item[/size][/color][color=#000000][size=2] [/size][/color][color=#666600][size=2]=[/size][/color][color=#000000][size=2] [/size][/color][color=#666600][size=2][[[/size][/color][color=#000000][size=2] [/size][/color][color=#666600][size=2]<[/size][/color][color=#000000][size=2] image [/size][/color][color=#666600][size=2]=[/size][/color][color=#000000][size=2] [/size][/color][color=#008800][size=2]"11533">SomeAsciiCode</end> ([b]1[/b])[/size][/color][/CODE]
See That 1 , you will see those in those 4 quest ids, or just check my translated luas.

Hercules Elf Bot - Oct 22, 2012 2:17

Originally posted by [b]Spre[/b]
I have, but the currect quest as discussed in IRC is based on iROs version, So it was wrriten as such, to base it on kROs we would need all current texts, and all everything untill then it can not be changed because like I said it is written based on iROs

Hercules Elf Bot - Oct 22, 2012 14:39

Originally posted by [b]Muad_Dib[/b]
I got the official files for this btw and not this custom scripted stuff :P So poke me for what you want to know.

Hercules Elf Bot - Oct 22, 2012 19:27

Originally posted by [b]Spre[/b]
I am starting this today.

Hercules Elf Bot - Oct 23, 2012 12:39

Originally posted by [b]dastgirpojee[/b]
Words are scripted in mine, but not the prizes and items.

Hercules Elf Bot - Oct 23, 2012 16:25

Originally posted by [b]Spre[/b]
I'm working on it, I have every dewata npc thanks to muad, but I work 4pm to 1am mon thru fri (today I work 12 hours 1 to 1) so My best chance to get major headway is this weekend.

Hercules Elf Bot - Oct 24, 2012 11:26

Originally posted by [b]dastgirpojee[/b]
Just a question! , how you guys get the npc of kro?

Hercules Elf Bot - Oct 25, 2012 5:26

Originally posted by [b]Spre[/b]
It is a secret. Seriously I do not even know, we just get them and adapt them for athena, without them we would be using a bunch of unofficial stuff.

Hercules Elf Bot - Oct 25, 2012 5:27

Originally posted by [b]dastgirpojee[/b]
Can you also pass the files to me of maud_dib

Hercules Elf Bot - Oct 25, 2012 5:39

Originally posted by [b]Spre[/b]
No I can Not. These files are given with respect and understanding, there is an agreement of nonsharing of the official files, you will see the rathena script that is created using them and that is all.

Hercules Elf Bot - Nov 10, 2012 15:09

Originally posted by [b]GM Takumirai[/b]
any news?

Joseph - May 27, 2013 4:33

This should be fixed.