diff options
Diffstat (limited to 'npc/re/quests/homun_s.txt')
-rw-r--r-- | npc/re/quests/homun_s.txt | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/npc/re/quests/homun_s.txt b/npc/re/quests/homun_s.txt index f0e8a70e6..708334731 100644 --- a/npc/re/quests/homun_s.txt +++ b/npc/re/quests/homun_s.txt @@ -36,7 +36,7 @@ //== Main NPCs ============================================= job3_gen01,12,44,3 script Viorel#job3_gen01 4_M_ALCHE_E,{ - if (countitem(6415)) { + if (countitem(Strange_Embryo)) { if (Class == Job_Genetic || Class == Job_Genetic_T || Class == Job_Baby_Genetic) { disable_items; if (!questprogress(4159) && !questprogress(4160)) { @@ -51,10 +51,10 @@ job3_gen01,12,44,3 script Viorel#job3_gen01 4_M_ALCHE_E,{ setquest 4154; setquest 4159; morphembryo; - if (countitem(6415) == 0) - getitem 6415,1; //Strange_Embryo - else if (countitem(6415) > 1) - delitem 6415, (countitem(6415) - 1); //Strange_Embryo + if (countitem(Strange_Embryo) == 0) + getitem Strange_Embryo,1; + else if (countitem(Strange_Embryo) > 1) + delitem Strange_Embryo, (countitem(Strange_Embryo) - 1); warp "que_house_s",63,41; end; } @@ -69,7 +69,7 @@ job3_gen01,12,44,3 script Viorel#job3_gen01 4_M_ALCHE_E,{ mes "Come back after you become a ^005DFFGenetic^000000 and have obtained a ^0000FFBioethics^000000."; close; } else { - delitem 6415, countitem(6415); //Strange_Embryo + delitem Strange_Embryo, countitem(Strange_Embryo); mes "[Viorel]"; mes "Wait, that embryo you have seems a little strange."; next; @@ -695,7 +695,7 @@ que_house_s,80,42,3 script Jeyna#homun_s 4_F_ALCHE_A,{ mes "In order to revert the process now, I need the Homunculus in its embryo form."; next; callsub L_CheckHomunculus; - if (checkweight(6415,1) == 0) { + if (checkweight(Strange_Embryo,1) == 0) { mes "[Jeyna]"; mes "But,"; mes "You don't have enough space to carry an ^0000FFembryo^000000."; |