Jump to content
  • 0

Party vs Party with no job repetition


achreshia

Question


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

Requesting for Party vs Party recruiter with no job repetition

example: in 1 party : monk,priest,knight if another knight joins the party recruiter will not accept it.

and it has arena room list

 

Thank you!

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

  • Group:  Forum Moderator
  • Topic Count:  44
  • Topics Per Day:  0.01
  • Content Count:  896
  • Reputation:   117
  • Joined:  05/23/12
  • Last Seen:  

@achreshiaThe only way which comes in my mind was to create a Warper npc for PvP or do an OnLoadMapEvent. Which I've scripted for u. I hope I can help u a lot.

PVPNoSameClassInParty.txt

//Not tested

 

Rynbef~

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  50
  • Topics Per Day:  0.01
  • Content Count:  1702
  • Reputation:   238
  • Joined:  09/05/12
  • Last Seen:  

Simple duplicate class check

prontera,150,150,0	script	Test	123,{
	.@pid = getcharid(1);
	if (!.@pid) end;
	.@aid = getcharid(3);
	getpartymember .@pid, 1;
	getpartymember .@pid, 2;
	for (.@i = 0; .@i < $@partymembercount; .@i++) {
		if (isloggedin($@partymemberaid[.@i], $@partymembercid[.@i])) {
			attachrid $@partymemberaid[.@i];
		
			if (inarray(.@class, Class) != -1)
				.@fail++;
			else 
				.@class[getarraysize(.@class)] = Class;
			
			detachrid;
		}
	}
	
	attachrid .@aid;
	
	if (.@fail)
		mes "Cannot enter.";
	else {
		mes "Enjoy!";
		warpparty "prontera", 153, 153, .@pid;
	}
	
	close;
		
}

 

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