Jump to content
  • 0

Need help how to in put mobs in arena


Famous

Question


  • Group:  Members
  • Topic Count:  145
  • Topics Per Day:  0.03
  • Content Count:  455
  • Reputation:   3
  • Joined:  06/19/12
  • Last Seen:  

ARENA 1

//===== eAthena Script =======================================
//= Arena
//===== By: ==================================================
//= Chasis of HDro
//===== Current Version: =====================================
//= v.1
//===== Compatible With: =====================================
//= Any eAthena Version
//===== Description: =========================================
//============================================================
//========== Arena Settings ==================================
bat_c02.gat	mapflag	nosave	SavePoint
bat_c02.gat	mapflag	nomemo
bat_c02.gat	mapflag	nobranch
bat_c02.gat	mapflag	noexp
bat_c02.gat	mapflag	nodrop
bat_c02.gat	mapflag	nochat
bat_c02.gat	mapflag	novending
bat_c02.gat	mapflag	nowarp
bat_c02.gat	mapflag	nowarpto
bat_c02.gat	mapflag	noreturn
//ordeal_2-1.gat	mapflag	pvp
//ordeal_2-1.gat	mapflag	pvp_noguild
bat_c02.gat	mapflag	noloot

//===========================================================
//=== Mobs
//===========================================================
-	script	Arena	-1,{

OnInit:
// Target Mobs
monster "bat_c02",0,0,"Arena Monster",7000,25,"Arena::OnMobKilled";	
end;

OnMobKilled:
monster "bat_c02",0,0,"Arena Monster",7000,1,"Arena::OnMobKilled";
set $@ran, rand(1,5);
if ($@ran == 1) getitem 24685,5;
if ($@ran == 2) getitem 24685,4;
if ($@ran == 3) getitem 24685,3;
if ($@ran == 4) getitem 24685,2;
if ($@ran == 5) getitem 24685,1;
}

//===========================================================
//=== Exit Warper
//===========================================================
bat_c02,50,131,4	script	Arena Gatekeeper	731,{
mes "[Arena Gatekeeper]";
mes "Would you like to go back to prontera?";
next;
menu "Yes",M_TELEPORT,"No",M_Bye;
close;

M_TELEPORT:
mes "[Arena Gatekeeper]";
mes "Thank You for mining!!.";
next;
warp "prontera",155,180;
end;

M_Bye:
mes "[Arena Gatekeeper]";
mes "Alright, Go get more Treasure Boxes~.";
close;

}

//===========================================================
//=== Warpers
//===========================================================
prontera,164,148,4	script	Monster Arena	731,{
mes "[Monster Arena]";
mes "Hi There, Would you like to go to the Treasure Room? You need 100,000,000z to go inside.";
next;
switch(select("Yes:No")) {
case 1:
	if (Zeny > 99999999) {
		mes "[Monster Arena]";
		mes "Alright I will now send you to the Treasure Room, Take Care!.";
		next;
		set Zeny,Zeny-100000000;
		warp "bat_c02",0,0;
		emotion 21;
		close;
	}
	else {
		mes "[Monster Arena]";
		mes "Sorry, But you don't have enough zeny.";
		close;
	}
case 2:
	mes "[Monster Arena]";
	mes "Alright, No problem.";
	close;
}
}

ARENA 2

//===== eAthena Script =======================================
//= Arena
//===== By: ==================================================
//= Chasis of HDro
//===== Current Version: =====================================
//= v.1
//===== Compatible With: =====================================
//= Any eAthena Version
//===== Description: =========================================
//============================================================
//========== Arena Settings ==================================
bat_c02.gat	mapflag	nosave	SavePoint
bat_c02.gat	mapflag	nomemo
bat_c02.gat	mapflag	nobranch
bat_c02.gat	mapflag	noexp
bat_c02.gat	mapflag	nodrop
bat_c02.gat	mapflag	nochat
bat_c02.gat	mapflag	novending
bat_c02.gat	mapflag	nowarp
bat_c02.gat	mapflag	nowarpto
bat_c02.gat	mapflag	noreturn
//ordeal_2-1.gat	mapflag	pvp
//ordeal_2-1.gat	mapflag	pvp_noguild
bat_c02.gat	mapflag	noloot


//===========================================================
//=== Mobs
//===========================================================
-	script	Arena2	-1,{

OnInit:
// Target Mobs
monster "bat_c02",0,0,"Arena Guardian",7001,8,"Arena2::OnMobKilled";
end;

OnMobKilled:
monster "bat_c02",0,0,"Arena Guardian",7001,1,"Arena2::OnMobKilled";
set $@ran, rand(1,5);
if ($@ran == 1) getitem 24685,6;
if ($@ran == 2) getitem 24685,8;
if ($@ran == 3) getitem 24685,10;
if ($@ran == 4) getitem 24685,20;
if ($@ran == 5) getitem 24685,30;
}

ARENA 3

//===== eAthena Script =======================================
//= Arena
//===== By: ==================================================
//= Chasis of HDro
//===== Current Version: =====================================
//= v.1
//===== Compatible With: =====================================
//= Any eAthena Version
//===== Description: =========================================
//============================================================
//========== Arena Settings ==================================
bat_c02.gat	mapflag	nosave	SavePoint
bat_c02.gat	mapflag	nomemo
bat_c02.gat	mapflag	nobranch
bat_c02.gat	mapflag	noexp
bat_c02.gat	mapflag	nodrop
bat_c02.gat	mapflag	nochat
bat_c02.gat	mapflag	novending
bat_c02.gat	mapflag	nowarp
bat_c02.gat	mapflag	nowarpto
bat_c02.gat	mapflag	noreturn
//ordeal_2-1.gat	mapflag	pvp
//ordeal_2-1.gat	mapflag	pvp_noguild
bat_c02.gat	mapflag	noloot


//===========================================================
//=== Mobs
//===========================================================
-	script	Arena3	-1,{

OnInit:
// Target Mobs
monster "bat_c02",0,0,"Arena Bonus",7002,2,"Arena3::OnMobKilled";
end;

OnMobKilled:
monster "bat_c02",0,0,"Arena Bonus",7002,1,"Arena3::OnMobKilled";
set $@ran, rand(1,3);
if ($@ran == 1) getitem 24685,20;
if ($@ran == 2) getitem 24685,30;
if ($@ran == 3) getitem 24685,40;
}

ARENA 4

//===== eAthena Script =======================================
//= Arena
//===== By: ==================================================
//= Chasis of HDro
//===== Current Version: =====================================
//= v.1
//===== Compatible With: =====================================
//= Any eAthena Version
//===== Description: =========================================
//============================================================
//========== Arena Settings ==================================
bat_c02.gat	mapflag	nosave	SavePoint
bat_c02.gat	mapflag	nomemo
bat_c02.gat	mapflag	nobranch
bat_c02.gat	mapflag	noexp
bat_c02.gat	mapflag	nodrop
bat_c02.gat	mapflag	nochat
bat_c02.gat	mapflag	novending
bat_c02.gat	mapflag	nowarp
bat_c02.gat	mapflag	nowarpto
bat_c02.gat	mapflag	noreturn
//ordeal_2-1.gat	mapflag	pvp
//ordeal_2-1.gat	mapflag	pvp_noguild
bat_c02.gat	mapflag	noloot


//===========================================================
//=== Mobs
//===========================================================
-	script	Arena4	-1,{

OnInit:
// Target Mobs
monster "bat_c02",0,0,"Arena Bonus",7003,2,"Arena4::OnMobKilled";
end;

OnMobKilled:
monster "bat_c02",0,0,"Arena Bonus",7003,1,"Arena4::OnMobKilled";
set $@ran, rand(1,3);
if ($@ran == 1) getitem 24685,20;
if ($@ran == 2) getitem 24685,30;
if ($@ran == 3) getitem 24685,40;
}

ARENA 5

//===== eAthena Script =======================================
//= Arena
//===== By: ==================================================
//= Chasis of HDro
//===== Current Version: =====================================
//= v.1
//===== Compatible With: =====================================
//= Any eAthena Version
//===== Description: =========================================
//============================================================
//========== Arena Settings ==================================
bat_c02.gat	mapflag	nosave	SavePoint
bat_c02.gat	mapflag	nomemo
bat_c02.gat	mapflag	nobranch
bat_c02.gat	mapflag	noexp
bat_c02.gat	mapflag	nodrop
bat_c02.gat	mapflag	nochat
bat_c02.gat	mapflag	novending
bat_c02.gat	mapflag	nowarp
bat_c02.gat	mapflag	nowarpto
bat_c02.gat	mapflag	noreturn
//ordeal_2-1.gat	mapflag	pvp
//ordeal_2-1.gat	mapflag	pvp_noguild
bat_c02.gat	mapflag	noloot


//===========================================================
//=== Mobs
//===========================================================
-	script	Arena5	-1,{

OnInit:
// Target Mobs
monster "bat_c02",0,0,"Arena Bonus",7004,2,"Arena5::OnMobKilled";
end;

OnMobKilled:
monster "bat_c02",0,0,"Arena Bonus",7004,1,"Arena5::OnMobKilled";
set $@ran, rand(1,3);
if ($@ran == 1) getitem 24685,20;
if ($@ran == 2) getitem 24685,30;
if ($@ran == 3) getitem 24685,40;
}

ARENA 6

//===== eAthena Script =======================================
//= Arena
//===== By: ==================================================
//= Chasis of HDro
//===== Current Version: =====================================
//= v.1
//===== Compatible With: =====================================
//= Any eAthena Version
//===== Description: =========================================
//============================================================
//========== Arena Settings ==================================
bat_c02.gat	mapflag	nosave	SavePoint
bat_c02.gat	mapflag	nomemo
bat_c02.gat	mapflag	nobranch
bat_c02.gat	mapflag	noexp
bat_c02.gat	mapflag	nodrop
bat_c02.gat	mapflag	nochat
bat_c02.gat	mapflag	novending
bat_c02.gat	mapflag	nowarp
bat_c02.gat	mapflag	nowarpto
bat_c02.gat	mapflag	noreturn
//ordeal_2-1.gat	mapflag	pvp
//ordeal_2-1.gat	mapflag	pvp_noguild
bat_c02.gat	mapflag	noloot


//===========================================================
//=== Mobs
//===========================================================
-	script	Arena6	-1,{

OnInit:
// Target Mobs
monster "bat_c02",117,131,"Arena Guardian",7005,10,"Arena6::OnMobKilled";
end;

OnMobKilled:
monster "bat_c02",117,131,"Arena Guardian",7005,1,"Arena6::OnMobKilled";
set $@ran, rand(1,3);
if ($@ran == 1) getitem 24685,10;
if ($@ran == 2) getitem 24685,10;
if ($@ran == 3) getitem 24685,10;
}

ARENA 7

//===== eAthena Script =======================================
//= Treasure Room
//===== By: ==================================================
//= Chasis of ThugRO
//===== Current Version: =====================================
//= v.1
//===== Compatible With: =====================================
//= Any eAthena Version
//===== Description: =========================================
//= Its a Pirate Thing way of Mining.
//= for any revision or bug just let me know
//============================================================
//========== Treasure Room Settings ==========================
bat_c02.gat	mapflag	nosave	SavePoint
bat_c02.gat	mapflag	nomemo
bat_c02.gat	mapflag	nobranch
bat_c02.gat	mapflag	noexp
bat_c02.gat	mapflag	nodrop
bat_c02.gat	mapflag	nochat
bat_c02.gat	mapflag	novending
bat_c02.gat	mapflag	nowarp
bat_c02.gat	mapflag	nowarpto
bat_c02.gat	mapflag	noreturn
//ordeal_2-1.gat	mapflag	pvp
//ordeal_2-1.gat	mapflag	pvp_noguild
bat_c02.gat	mapflag	noloot


//===========================================================
//=== Mobs
//===========================================================
-	script	Arena7	-1,{

OnInit:
// Target Mobs
monster "bat_c02",117,131,"Arena Guardian",7006,10,"Arena7::OnMobKilled";
end;

OnMobKilled:
monster "bat_c02",117,131,"Arena Guardian",7006,1,"Arena7::OnMobKilled";
set $@ran, rand(1,3);
if ($@ran == 1) getitem 24685,10;
if ($@ran == 2) getitem 24685,10;
if ($@ran == 3) getitem 24685,10;
}

mob_db.txt / mob_db2.txt
7000,A_ICE_TITAN,Ice Titan,Ice Titan,60,1990000,0,0,0,1,2090,3570,71,15,123,234,128,93,119,79,10,12,2,0,61,0x3295,175,431,330,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
7001,A_BAPHOMET,Baphomet,Baphomet,81,2680000,0,0,37895,2,3220,4040,71,15,299,194,188,110,379,129,10,12,2,0,61,0x3295,150,241,240,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
7002,A_BLUE_FLOWER,Blue Flower,Blue Flower,98,2000,0,0,0,1,1,2,100,99,1,1,1,1,1,1,10,12,1,3,22,0x40,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
7003,A_RED_FLOWER,Red Flower,Red Flower,98,2000,0,0,0,1,1,2,100,99,1,1,1,1,1,1,10,12,1,3,22,0x40,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
7004,A_YELL_FLOWER,Yellow Flower,Yellow Flower,98,2000,0,0,0,1,1,2,100,99,1,1,1,1,1,1,10,12,1,3,22,0x40,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
7005,A_KNIGHT_GUARDIAN,Knight Guardian,Knight Guardian,86,1930214,0,1,1,2,1280,1560,55,30,110,40,140,65,125,65,14,16,2,7,80,0x1FA5,275,1200,1200,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
7006,A_ARCHER_GUARDIAN,Archer Guardian,Archer Guardian,74,1928634,0,1,1,12,1120,1600,35,60,95,80,80,90,165,55,14,16,2,7,80,0x1FA5,265,1200,1200,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

mob_avail.txt
7000,1777,0
7001,1039,0
7002,1934,0
7003,1935,0
7004,1936,0
7005,1286,0
7006,1285,0

I try my script but doesn't work in reloading or even summoning the mobs is failed..

Edited by Arcenciel
Codeboxed
Link to comment
Share on other sites

4 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  4
  • Topics Per Day:  0.00
  • Content Count:  64
  • Reputation:   2
  • Joined:  11/14/11
  • Last Seen:  

Any error is showing in the console?? (map_server_sql)

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  145
  • Topics Per Day:  0.03
  • Content Count:  455
  • Reputation:   3
  • Joined:  06/19/12
  • Last Seen:  

nope dont have any error's

problem solve

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  94
  • Topics Per Day:  0.02
  • Content Count:  2192
  • Reputation:   252
  • Joined:  11/11/11
  • Last Seen:  

nope dont have any error's

problem solve

How did you manage to solve it?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  145
  • Topics Per Day:  0.03
  • Content Count:  455
  • Reputation:   3
  • Joined:  06/19/12
  • Last Seen:  

I just replace the orginal mobs ^_^

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...