Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[AddOn]Saviour PQ

Newbie Spellweaver
Joined
Aug 16, 2009
Messages
49
Reaction score
42
Basically, the PQ is to save a girl(name Shumi) which was kidnapped by the Master Guardian living in a black room. Shumi's sister knew about it and asked for heros(2~6players) to enter and save Shumi. MasterGuardian set up 3 gates before entering the black room.

At the First Gate:player must eliminate all monster without being damaged by them.

At the Second&Third Gate:players must eliminate all monster in the map without being touch by them.

If user was being touch/damage by the monster, the whole party will be warped out and the quest will fail.

At the Boss Map, user will be casted a spell by Master Guardian which whenever they got damaged by a monster, their HP will turn 50. The party leader must loot "Shumi's Coin" from Master Guardian to complete the quest.

Download(without java edit):

At takedamagehandler.java
add
Code:
 } else if (damage > 0 && player.getMapId() == 240050101 || player.getMapId() == 240050102 || player.getMapId() == 240050103) {
              for (MapleCharacter mch : player.getMap().getCharacters()) {
                mch.dropMessage(6, "The quest have failed.");
               mch.changeMap(240050000);
               }
            
            } else if (damage > 0 && player.getMapId() == 240050310) {
              player.setHp(50);
              player.updateSingleStat(MapleStat.HP, 50);
               }

above
Code:
            direction = slea.readByte();

Add this at Abstractplayerinteraction.java
Code:
public void mapMessage(int type, String message) {
        getPlayer().getMap().broadcastMessage(MaplePacketCreator.serverNotice(type, message));
    }

Done :)
Enjoy.


-DontFlameTy-
 
Last edited by a moderator:
may web.very maple.pls.
Loyal Member
Joined
Aug 12, 2009
Messages
1,810
Reaction score
606
Re: Survival PQ

Nice, I'll look at this tomorrow :]
FYI: change name please, I thought this was Pyramid Survival Quest from Global
 
Last edited:
Custom Title Activated
Loyal Member
Joined
Mar 17, 2009
Messages
1,908
Reaction score
538
Re: Saviour PQ

Looks good, but I suggest giving us some functions like mapMessage.
 
Legendary Battlemage
Loyal Member
Joined
Dec 13, 2010
Messages
649
Reaction score
140
Re: Saviour PQ

Hmm, this is interesting. I dont want to download it but it seems ok Ryan :3
 
Legendary Battlemage
Loyal Member
Joined
Dec 13, 2010
Messages
649
Reaction score
140
Re: Saviour PQ

I have S.T.M ):
Tell me ):
And i am not joking

Rand_h...

Prabh asking me to help with Helios Dev...

Ryan...

Alex...


If you don't remember after that u has more than S.T.M
 
Newbie Spellweaver
Joined
Aug 16, 2009
Messages
49
Reaction score
42
@Alex - cause i didnt know his RageZone Name!
@Coaster - Yes you may.
 
Newbie Spellweaver
Joined
Nov 19, 2009
Messages
83
Reaction score
2
There's a problem with the npc's and i havae no idea how to fix it

this is awesome tho
 
Back
Top