Famous Posted September 1, 2012 Group: Members Topic Count: 145 Topics Per Day: 0.03 Content Count: 455 Reputation: 3 Joined: 06/19/12 Last Seen: February 26, 2018 Share Posted September 1, 2012 //===== 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_b02.gat mapflag nosave SavePoint bat_b02.gat mapflag nomemo bat_b02.gat mapflag nobranch bat_b02.gat mapflag noexp bat_b02.gat mapflag nodrop bat_b02.gat mapflag nochat bat_b02.gat mapflag novending bat_b02.gat mapflag nowarp bat_b02.gat mapflag nowarpto bat_b02.gat mapflag noreturn //bat_b02.gat mapflag pvp //bat_b02.gat mapflag pvp_noguild bat_b02.gat mapflag noloot //=========================================================== //=== Mobs //=========================================================== - script Arena7 -1,{ OnInit: // Target Mobs monster "bat_b02",0,0,"Arena Guardian",1039,5,"Arena7::OnMobKilled"; end; OnMobKilled: monster "bat_b02",0,0,"Arena Guardian",1286,5,"Arena7::OnMobKilled"; set $@ran, rand(1,3); if ($@ran == 1) getitem 7227,1; if ($@ran == 2) getitem 7385,25; if ($@ran == 3) getitem 7385,15; } Quote Link to comment Share on other sites More sharing options...
Emistry Posted September 1, 2012 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2369 Joined: 10/28/11 Last Seen: Sunday at 05:32 PM Share Posted September 1, 2012 just make it spawn 1 upon killed...not 5... OnMobKilled: monster "bat_b02",0,0,"Arena Guardian",1286,1,"Arena7::OnMobKilled"; Quote Link to comment Share on other sites More sharing options...
Famous Posted September 1, 2012 Group: Members Topic Count: 145 Topics Per Day: 0.03 Content Count: 455 Reputation: 3 Joined: 06/19/12 Last Seen: February 26, 2018 Author Share Posted September 1, 2012 thanks Emistry........... Quote Link to comment Share on other sites More sharing options...
Question
Famous
Link to comment
Share on other sites
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.