Jump to content
  • 0

WOE Reward NPC [ HELP ]


awesomazingxed

Question


  • Group:  Members
  • Topic Count:  51
  • Topics Per Day:  0.01
  • Content Count:  95
  • Reputation:   0
  • Joined:  10/24/14
  • Last Seen:  

Hello people of rathena. Can anyone who has good heart + knowledge can help me with my WOE Reward npc?
the problem is, i can't click it. Thanks in advance.

turbo_room,110,139,4	script	WOE Rewards	618,{
	mes "^000088[Emperium]^000000";
	mes "Greetings, adventurer..";
	mes "Do you want to redeem your guild reward for last session War of Emperium?";
	next;
	mes "^000088[Emperium]^000000";
	mes "Please select your castle.";
	next;
	if ( agitcheck() ) goto L_woeon;
	menu
"Kriemhild",L_prt_cas01,
"Sacred Altar",L_pay_cas04,
"Horn",L_arug_cas03,
"Vidblainn",L_schg_cas03,
"Mardol",L_arug_cas01,

L_prt_cas01:
	if ( getcastledata( "prt_cas01", 1) != getcharid(2) ) goto L_not_owner;
	if ( $castle_claimed[1] ) goto L_claimed;
	if ( getguildmasterid( getcharid(2) ) != getcharid(0) ) goto L_not_gm;
	mes "receiving the reward for this castle";
	getitem 2702,1;
	getitem 2423,1;
	getitem 7711,10;
	getitem 7720,5;
	getitem 673,10;
	set $castle_claimed[1], 1;
	close;
L_pay_cas04:
	if ( getcastledata( "pay_cas04", 1) != getcharid(2) ) goto L_not_owner;
	if ( $castle_claimed[2] ) goto L_claimed;
	if ( getguildmasterid( getcharid(2) ) != getcharid(0) ) goto L_not_gm;
	mes "receiving the reward for this castle";
	getitem 5353,1;
	getitem 2433,1;
	getitem 2701,2;
	getitem 7711,10;
	getitem 7720,5;
	getitem 673,10;
	set $castle_claimed[2], 1;
	close;
L_arug_cas03:
	if ( getcastledata( "aru_cas03", 1) != getcharid(2) ) goto L_not_owner;
	if ( $castle_claimed[3] ) goto L_claimed;
	if ( getguildmasterid( getcharid(2) ) != getcharid(0) ) goto L_not_gm;
	mes "receiving the reward for this castle";
	getitem 2554,1;
	getitem 7711,10;
	getitem 7720,5;
	getitem 673,10;
	set $castle_claimed[3], 1;
	close;
L_schg_cas03:
	if ( getcastledata( "schg_cas03", 1) != getcharid(2) ) goto L_not_owner;
	if ( $castle_claimed[4] ) goto L_claimed;
	if ( getguildmasterid( getcharid(2) ) != getcharid(0) ) goto L_not_gm;
	mes "receiving the reward for this castle";
	getitem 2542,1;
	getitem 7711,10;
	getitem 7720,5;
	getitem 673,10;
	set $castle_claimed[4], 1;
	close;
L_arug_cas01:
	if ( getcastledata( "arug_cas01", 1) != getcharid(2) ) goto L_not_owner;
	if ( $castle_claimed[5] ) goto L_claimed;
	if ( getguildmasterid( getcharid(2) ) != getcharid(0) ) goto L_not_gm;
	mes "receiving the reward for this castle";
	getitem 13412,1;
	getitem 13413,1;
	getitem 4354,5;
	getitem 7711,10;
	getitem 7720,5;
	getitem 673,10;
	set $castle_claimed[5], 1;
	close;

L_woeon:
	mes "^000088[Emperium]^000000";
	mes "A war is currently in progress.";
	mes "If your guild owned a castle ask your guild master to see me to claim the reward.";
	close;
L_not_owner:
	mes "^000088[Emperium]^000000";
	mes "Your guild failed to take this castle.";
	mes "If your guild owned a castle ask your guild master to claim reward from me.";
	close;
L_claimed:
	mes "^000088[Emperium]^000000";
	mes "Your guild already received the reward for this castle.";
	close;
L_not_gm:
	mes "^000088[Emperium]^000000";
	mes "Ask your guild master to see me.";
	close;
OnAgitEnd:
	set $castle_claimed[1], 0; // everytime woe ends the variable resets
	set $castle_claimed[2], 0;
	set $castle_claimed[3], 0;
	set $castle_claimed[4], 0;
	set $castle_claimed[5], 0;
	end;
}
Link to comment
Share on other sites

1 answer to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  14
  • Topics Per Day:  0.00
  • Content Count:  104
  • Reputation:   27
  • Joined:  12/05/13
  • Last Seen:  

Replace the comma at the end of L_arug_cas01 with a semi-colon (;).

menu
"Kriemhild",L_prt_cas01,
"Sacred Altar",L_pay_cas04,
"Horn",L_arug_cas03,
"Vidblainn",L_schg_cas03,
"Mardol",L_arug_cas01,

You should look at the console next time to see the errors you are getting. Also, I'm not sure if there are any other errors in this script.

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