diff options
-rw-r--r-- | doc/script_commands.txt | 11 | ||||
-rw-r--r-- | npc/quests/quests_13_1.txt | 20 |
2 files changed, 13 insertions, 18 deletions
diff --git a/doc/script_commands.txt b/doc/script_commands.txt index 54d62b045..c3c0f7ab6 100644 --- a/doc/script_commands.txt +++ b/doc/script_commands.txt @@ -4563,6 +4563,17 @@ client for getting Hercules). if ( get_version() >= 15000 ) mes "Welcome to Hercules!"; + +--------------------------------------- + +*montransform <monster id>,<duration>{,<sc_type>{,<val1>{,<val2>{,<val3>{,<val4>}}}}}; +*montransform "<monster name>",<duration>{,<sc_type>{,<val1>{,<val2>{,<val3>{,<val4>}}}}}; + +This command can transform your character into monster and you can still +use all your skills like a normal character. +Can only be removed when your killed or if you die or if duration is over. + +for sc_type,val1,val2,val3,val4, see 'sc_start','sc_start2','sc_start4' commands. --------------------------------------- //===================================== diff --git a/npc/quests/quests_13_1.txt b/npc/quests/quests_13_1.txt index 7bed6a624..cb88b7b5f 100644 --- a/npc/quests/quests_13_1.txt +++ b/npc/quests/quests_13_1.txt @@ -8834,27 +8834,11 @@ mid_campin,90,121,5 script Hibba Agip 4_M_REDSWORD,{ cutin "ep13_captin_edq",255; close; } - else if ((ep13_1_edq == 9) && (countitem(11012) < 3)) { + else if ((ep13_1_edq == 9) && (countitem(11012) != 3)) { mes "[Hibba Agip]"; mes "Is something wrong? Alright, we'll write another report for you."; next; - delitem 11012,1; //Expedition_Report - delitem 11012,1; //Expedition_Report - delitem 11012,1; //Expedition_Report - getitem 11012,3; //Expedition_Report - mes "[Hibba Agip]"; - mes "Let me remind you again. The officials are these three people: ^0000FFMinister Laur^000000 of the Rune Midgarts Kingdom, ^0000FFPriest Nuria^000000 of Arunafeltz and ^0000FFGerhart^000000 of the Schwaltzvalt Republic."; - next; - mes "[Hibba Agip]"; - mes "Make sure to deliver the report to them without fail. Come back in one piece, alright?"; - cutin "ep13_captin_edq",255; - close; - } - else if ((ep13_1_edq == 9) && (countitem(11012) > 3)) { - mes "[Hibba Agip]"; - mes "Is something wrong? Alright, we'll write another report for you."; - next; - delitem 11012,20; //Expedition_Report + delitem 11012,countitem(11012); //Expedition_Report getitem 11012,3; //Expedition_Report mes "[Hibba Agip]"; mes "Let me remind you again. The officials are these three people: ^0000FFMinister Laur^000000 of the Rune Midgarts Kingdom, ^0000FFPriest Nuria^000000 of Arunafeltz and ^0000FFGerhart^000000 of the Schwaltzvalt Republic."; |