Jump to content
  • 0

Sealed Shrine and Endless Tower


SlashGeeGee

Question


  • Group:  Members
  • Topic Count:  111
  • Topics Per Day:  0.02
  • Content Count:  573
  • Reputation:   20
  • Joined:  11/19/11
  • Last Seen:  

Hello rA

how can i put prize after 1 party finishes endless tower , also the sealed shrine quest ?

~ SlashGeeGee

bump

Link to comment
Share on other sites

8 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  10
  • Reputation:   0
  • Joined:  03/03/12
  • Last Seen:  

I suggest looking at this post,the original creator is CarlosHenrq on eAthena,it's a source edit adding getitemparty,a scripting command that does just that,gives the whole party an item.

Link to original post:

http://www.eathena.ws/board/index.php?showtopic=252556

Link to the patch:

http://carlos-scripts.googlecode.com/svn/snippets/eAthena/3ceam/getitemparty.patch

Hope this is somewhat what you were looking for.

Edited by Pavi
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  111
  • Topics Per Day:  0.02
  • Content Count:  573
  • Reputation:   20
  • Joined:  11/19/11
  • Last Seen:  

BUMP ! i need someone on how to add prize after the party completed these instances only the party leader will get it .

Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10015
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

show your script so that other member can help you edit accordingly..

and elaborate how you want the leader to get it..

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  111
  • Topics Per Day:  0.02
  • Content Count:  573
  • Reputation:   20
  • Joined:  11/19/11
  • Last Seen:  

show your script so that other member can help you edit accordingly..

and elaborate how you want the leader to get it..

sorry for the late reply !

i'm using the default Endless Tower instance in rAthena. we'll after they killed the Naght Seiger Boss the party leader get's an item for example Apple #512 in his/her inventory

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  399
  • Reputation:   198
  • Joined:  11/09/11
  • Last Seen:  

I'd just use:

OnNPCKillEvent:

if(killedrid == 1956) { getitem 501,1; }

Granted, that wouldn't go to the party leader-- it'd go to someone in the party, but that could perhaps be useful if you don't want to use an event label.

Otherwise, for ET:

Find:

OnTimer10500:

instance_announce 0,"You'll soon know. Mine is the face of death!",bc_map,"0x00ffcc";

stopnpctimer;

monster "6@tower",156,147,"Nacht Sieger",1956,1,instance_npcname("#4th Beeper", instance_id())+"::OnMyMobDead";

end;

OnMyMobDead:

donpcevent instance_npcname("Lost Soul#102", instance_id())+"::OnEnable";

end;

Add:

OnMyMobDead:

getitem ###,#;

donpc...

Still doesn't go to the party leader, but too lazy to write that portion out. xP

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  111
  • Topics Per Day:  0.02
  • Content Count:  573
  • Reputation:   20
  • Joined:  11/19/11
  • Last Seen:  

I'd just use:

OnNPCKillEvent:

if(killedrid == 1956) { getitem 501,1; }

Granted, that wouldn't go to the party leader-- it'd go to someone in the party, but that could perhaps be useful if you don't want to use an event label.

Otherwise, for ET:

Find:

OnTimer10500:

instance_announce 0,"You'll soon know. Mine is the face of death!",bc_map,"0x00ffcc";

stopnpctimer;

monster "6@tower",156,147,"Nacht Sieger",1956,1,instance_npcname("#4th Beeper", instance_id())+"::OnMyMobDead";

end;

OnMyMobDead:

donpcevent instance_npcname("Lost Soul#102", instance_id())+"::OnEnable";

end;

Add:

OnMyMobDead:

getitem ###,#;

donpc...

Still doesn't go to the party leader, but too lazy to write that portion out. xP

Like this ?

OnNPCKillEvent:
OnMyMobDead:
donpcevent instance_npcname("Lost Soul#102", instance_id())+"::OnEnable";
if(killedrid == 1956) { getitem 501,1; }
end;

Edited by SlashGeeGee
Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10015
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

if you want it to give to only party leader..

you can try this

getitem 607,1,getpartyleader( getcharid(1),1 );

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  111
  • Topics Per Day:  0.02
  • Content Count:  573
  • Reputation:   20
  • Joined:  11/19/11
  • Last Seen:  

if you want it to give to only party leader..

you can try this

getitem 607,1,getpartyleader( getcharid(1),1 );

I'll put it here right ?

OnMyMobDead:
donpcevent instance_npcname("Lost Soul#102", instance_id())+"::OnEnable";
getitem 607,1,getpartyleader( getcharid(1),1 );
end;

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...