Renamed GrandBossTeleporters to ValakasTeleporters.

This commit is contained in:
MobiusDevelopment
2021-09-13 14:59:25 +00:00
parent 71d323480f
commit 57a4d1bdd3
285 changed files with 1653 additions and 1701 deletions

View File

@@ -1,4 +1,4 @@
<html><body>Watcher of Valakas Klein:<br>
Until now, less than 50 people have attempted the Hall of Flames. Are you sure you want to enter it?<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest GrandBossTeleporters 31540">Enter</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest ValakasTeleporters 31540">Enter</Button>
</body></html>

View File

@@ -1,4 +1,4 @@
<html><body>Watcher of Valakas Klein:<br>
So far, between 50 and 100 people have entered the Hall of Flames. Do you wish to enter?<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest GrandBossTeleporters 31540">Enter</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest ValakasTeleporters 31540">Enter</Button>
</body></html>

View File

@@ -1,4 +1,4 @@
<html><body>Watcher of Valakas Klein:<br>
So far, between 100 and 150 people have entered the Hall of Flames. Do you wish to enter?<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest GrandBossTeleporters 31540">Enter</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest ValakasTeleporters 31540">Enter</Button>
</body></html>

View File

@@ -1,4 +1,4 @@
<html><body>Watcher of Valakas Klein:<br>
So far, between 150 and 200 people have entered the Hall of Flames. Do you wish to enter?<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest GrandBossTeleporters 31540">Enter</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest ValakasTeleporters 31540">Enter</Button>
</body></html>

View File

@@ -1,4 +1,4 @@
<html><body>Watcher of Valakas Klein:<br>
So far, over 200 people have entered the Hall of Flames. Do you wish to enter?<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest GrandBossTeleporters 31540">Enter</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest ValakasTeleporters 31540">Enter</Button>
</body></html>

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package ai.others.GrandBossTeleporters;
package ai.others.ValakasTeleporters;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.data.xml.DoorData;
@@ -35,7 +35,7 @@ import ai.bosses.Valakas.Valakas;
* Original python script by Emperorc.
* @author Plim
*/
public class GrandBossTeleporters extends AbstractNpcAI
public class ValakasTeleporters extends AbstractNpcAI
{
// NPCs
private static final int[] NPCs =
@@ -55,7 +55,7 @@ public class GrandBossTeleporters extends AbstractNpcAI
private static int playerCount = 0;
private GrandBossTeleporters()
private ValakasTeleporters()
{
addStartNpc(NPCs);
addTalkId(NPCs);
@@ -188,6 +188,6 @@ public class GrandBossTeleporters extends AbstractNpcAI
public static void main(String[] args)
{
new GrandBossTeleporters();
new ValakasTeleporters();
}
}