Implemented the god item quest. Thanks to SinSloth for scripting the major part of it.
git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@8395 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
parent
522cac5d4b
commit
4590cae4e4
@ -35,6 +35,11 @@ Playtester
|
|||||||
|
|
||||||
Date Added
|
Date Added
|
||||||
======
|
======
|
||||||
|
08/21
|
||||||
|
* Implemented the God item quest. [MasterOfMuppets]
|
||||||
|
- Thanks to SinSloth for scripting most of it.
|
||||||
|
- Beware of potential bugs.
|
||||||
|
- A grammar check-up would be appreciated.
|
||||||
08/20
|
08/20
|
||||||
* Implemented the Einbroch polution script. [MasterOfMuppets]
|
* Implemented the Einbroch polution script. [MasterOfMuppets]
|
||||||
* Implemented the official 2005 headgear quests. [MasterOfMuppets]
|
* Implemented the official 2005 headgear quests. [MasterOfMuppets]
|
||||||
|
5535
npc/quests/seals/brisingamen_seal.txt
Normal file
5535
npc/quests/seals/brisingamen_seal.txt
Normal file
File diff suppressed because it is too large
Load Diff
123
npc/quests/seals/god_global.txt
Normal file
123
npc/quests/seals/god_global.txt
Normal file
@ -0,0 +1,123 @@
|
|||||||
|
//===== eAthena Script =======================================
|
||||||
|
//= Variable Management NPC for the god item quest
|
||||||
|
//===== By: ==================================================
|
||||||
|
//= MasterOfMuppets
|
||||||
|
//===== Current Version: =====================================
|
||||||
|
//= 1.0
|
||||||
|
//===== Compatible With: =====================================
|
||||||
|
//= eAthena
|
||||||
|
//===== Description: =========================================
|
||||||
|
//= Use this NPC if the seals quest variables get messed up.
|
||||||
|
//===== Additional Comments: =================================
|
||||||
|
// 1.0 First version. [MasterOfMuppets]
|
||||||
|
//============================================================
|
||||||
|
|
||||||
|
sec_in02.gat,15,170,0 script Seals Quest Vars 817,{
|
||||||
|
|
||||||
|
if(getgmlevel() > 98)
|
||||||
|
{
|
||||||
|
mes "[Variable Management]";
|
||||||
|
mes "Welcome to the God Item Quest";
|
||||||
|
mes "Global Variable Management";
|
||||||
|
mes "function.";
|
||||||
|
next;
|
||||||
|
while(1)
|
||||||
|
{
|
||||||
|
menu "Check current variable values",s_Values,"Change variable values",s_Change,"Cancel",-;
|
||||||
|
close;
|
||||||
|
|
||||||
|
s_Change:
|
||||||
|
mes "[Variable Management]";
|
||||||
|
mes "Which variable would you";
|
||||||
|
mes "like to change?";
|
||||||
|
next;
|
||||||
|
menu "$God1",-,"$God2",s_2,"$God3",s_3,"$God4",s_4;
|
||||||
|
|
||||||
|
mes "[Variable Management]";
|
||||||
|
mes "^0000FF$God1^000000 is currently ^FF0000" + $God1 + "^000000.";
|
||||||
|
mes "What would you like to";
|
||||||
|
mes "change it to? (Enter";
|
||||||
|
mes "101 to cancel)";
|
||||||
|
next;
|
||||||
|
input @temp;
|
||||||
|
if(@temp == 101)goto s_Canceled;
|
||||||
|
if(@temp < 0 || @temp > 100)goto s_BadValue;
|
||||||
|
set $God1,@temp;
|
||||||
|
mes "[Variable Management]";
|
||||||
|
mes "^0000FF$God1^000000 was changed to ^FF0000" + $God1 + "^000000.";
|
||||||
|
close;
|
||||||
|
|
||||||
|
s_2:
|
||||||
|
mes "[Variable Management]";
|
||||||
|
mes "^0000FF$God2^000000 is currently ^FF0000" + $God2 + "^000000.";
|
||||||
|
mes "What would you like to";
|
||||||
|
mes "change it to? (Enter";
|
||||||
|
mes "101 to cancel)";
|
||||||
|
next;
|
||||||
|
input @temp;
|
||||||
|
if(@temp == 101)goto s_Canceled;
|
||||||
|
if(@temp < 0 || @temp > 100)goto s_BadValue;
|
||||||
|
set $God2,@temp;
|
||||||
|
mes "[Variable Management]";
|
||||||
|
mes "^0000FF$God2^000000 was changed to ^FF0000" + $God2 + "^000000.";
|
||||||
|
close;
|
||||||
|
|
||||||
|
s_3:
|
||||||
|
mes "[Variable Management]";
|
||||||
|
mes "^0000FF$God3^000000 is currently ^FF0000" + $God3 + "^000000.";
|
||||||
|
mes "What would you like to";
|
||||||
|
mes "change it to? (Enter";
|
||||||
|
mes "101 to cancel)";
|
||||||
|
next;
|
||||||
|
input @temp;
|
||||||
|
if(@temp == 101)goto s_Canceled;
|
||||||
|
if(@temp < 0 || @temp > 100)goto s_BadValue;
|
||||||
|
set $God3,@temp;
|
||||||
|
mes "[Variable Management]";
|
||||||
|
mes "^0000FF$God3^000000 was changed to ^FF0000" + $God3 + "^000000.";
|
||||||
|
close;
|
||||||
|
|
||||||
|
s_4:
|
||||||
|
mes "[Variable Management]";
|
||||||
|
mes "^0000FF$God4^000000 is currently ^FF0000" + $God4 + "^000000.";
|
||||||
|
mes "What would you like to";
|
||||||
|
mes "change it to? (Enter";
|
||||||
|
mes "101 to cancel)";
|
||||||
|
next;
|
||||||
|
input @temp;
|
||||||
|
if(@temp == 101)goto s_Canceled;
|
||||||
|
if(@temp < 0 || @temp > 100)goto s_BadValue;
|
||||||
|
set $God4,@temp;
|
||||||
|
mes "[Variable Management]";
|
||||||
|
mes "^0000FF$God4^000000 was changed to ^FF0000" + $God4 + "^000000.";
|
||||||
|
close;
|
||||||
|
|
||||||
|
s_Canceled:
|
||||||
|
close;
|
||||||
|
|
||||||
|
s_BadValue:
|
||||||
|
mes "[Variable Management]";
|
||||||
|
mes "Please enter a value";
|
||||||
|
mes "between 0-100.";
|
||||||
|
close;
|
||||||
|
|
||||||
|
s_Values:
|
||||||
|
mes "[Variable Management]";
|
||||||
|
mes "Current variable values are:";
|
||||||
|
mes "^0000FF$God1^000000 = ^FF0000" + $God1 + "^000000.";
|
||||||
|
mes "^0000FF$God2^000000 = ^FF0000" + $God2 + "^000000.";
|
||||||
|
mes "^0000FF$God3^000000 = ^FF0000" + $God3 + "^000000.";
|
||||||
|
mes "^0000FF$God4^000000 = ^FF0000" + $God4 + "^000000.";
|
||||||
|
next;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
mes "[Variable Management]";
|
||||||
|
mes "Sorry. You don't have";
|
||||||
|
mes "authorization to use this";
|
||||||
|
mes "npc.";
|
||||||
|
close;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
1595
npc/quests/seals/god_weapon_creation.txt
Normal file
1595
npc/quests/seals/god_weapon_creation.txt
Normal file
File diff suppressed because it is too large
Load Diff
3457
npc/quests/seals/megingard_seal.txt
Normal file
3457
npc/quests/seals/megingard_seal.txt
Normal file
File diff suppressed because it is too large
Load Diff
3158
npc/quests/seals/mjolnir_seal.txt
Normal file
3158
npc/quests/seals/mjolnir_seal.txt
Normal file
File diff suppressed because it is too large
Load Diff
2295
npc/quests/seals/sleipnir_seal.txt
Normal file
2295
npc/quests/seals/sleipnir_seal.txt
Normal file
File diff suppressed because it is too large
Load Diff
@ -99,6 +99,14 @@ npc: npc/quests/eye_of_hellion.txt
|
|||||||
//There are some things you might consider doing before implementing it,
|
//There are some things you might consider doing before implementing it,
|
||||||
//For more info, read the comments in npc/quests/The_Sign_Quest.txt
|
//For more info, read the comments in npc/quests/The_Sign_Quest.txt
|
||||||
//npc: npc/quests/The_Sign_Quest.txt
|
//npc: npc/quests/The_Sign_Quest.txt
|
||||||
|
//The God Item Quest Files
|
||||||
|
npc: npc/quests/seals/brisingamen_seal.txt
|
||||||
|
npc: npc/quests/seals/god_global.txt
|
||||||
|
npc: npc/quests/seals/god_weapon_creation.txt
|
||||||
|
npc: npc/quests/seals/megingard_seal.txt
|
||||||
|
npc: npc/quests/seals/mjolnir_seal.txt
|
||||||
|
npc: npc/quests/seals/sleipnir_seal.txt
|
||||||
|
//
|
||||||
npc: npc/quests/newgears/2004_headgears.txt
|
npc: npc/quests/newgears/2004_headgears.txt
|
||||||
npc: npc/quests/newgears/2005_headgears.txt
|
npc: npc/quests/newgears/2005_headgears.txt
|
||||||
npc: npc/quests/novice_exchange.txt
|
npc: npc/quests/novice_exchange.txt
|
||||||
|
@ -93,5 +93,6 @@ npc: npc/warps/other/airplane.txt
|
|||||||
npc: npc/warps/other/other.txt
|
npc: npc/warps/other/other.txt
|
||||||
npc: npc/warps/other/kiel.txt
|
npc: npc/warps/other/kiel.txt
|
||||||
npc: npc/warps/other/sign.txt
|
npc: npc/warps/other/sign.txt
|
||||||
|
npc: npc/warps/other/god.txt
|
||||||
npc: npc/warps/pvp/pvp.txt
|
npc: npc/warps/pvp/pvp.txt
|
||||||
// --------------------------------------------------------------
|
// --------------------------------------------------------------
|
Loading…
x
Reference in New Issue
Block a user