Jump to content
  • 0

Trans only can go in


Jin Freecs

Question


  • Group:  Members
  • Topic Count:  20
  • Topics Per Day:  0.00
  • Content Count:  63
  • Reputation:   3
  • Joined:  12/22/11
  • Last Seen:  

I have my own battle grounds script made one of my friend but now i can't contact him thats why im here i just want to ask how to make this script only LEVEL 99 Trans and any job except for 3rd jobs can join my BG? anyone kindly edit this script

OnPlayerEnterActive:
if($@BGState) {
if(($@guillCount - $@croixCount) > 0) {
	kickwaitingroomall "Guillaume";
} else {
	getwaitingroomusers();
	if(attachrid(.@waitingroom_users[0])) {
		if(BaseLevel >= getvariableofnpc(.BGMinLevel, "BGBase")) {
			if(getcharid(4)) { //get rid of any existing bg groups
				bg_leave();
			}
			//heal
			percentheal 100,100;
			if($@BGState == 1) {
				//game is in lobby state
				waitingroom2bg_single($@BGGuillID, "bat_b01", 9, 289, "Guillaume");
			} else {
				//game is in running state
				waitingroom2bg_single($@BGGuillID, "bat_b01", 9, 289, "Guillaume");
			}
			donpcevent "BGBase::OnUpdatePlayerCounts";
		} else {
			dispbottom "You need to be at least level " + getvariableofnpc(.BGMinLevel, "BGBase") + " to join";
		}
		kickwaitingroomall("Guillaume");
	}
}
} else {
donpcevent "Guillaume::OnUpdateInactiveGame";
}
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:  351
  • Reputation:   52
  • Joined:  11/15/11
  • Last Seen:  

Well considering waitingroom don't you have the npc that leads to the waitingroom?

Just modify those two npc's to not let anybody to the waitingroom who's not level 99 and not trans that's pretty simple..

if( BaseLevel != 99 || (Class >= 4001 && Class <= 4022)) goto L_Requirement;


L_Requirement:
mes "Sorry but you don't meet the specified requirements";
close;

Edited by Nameless2you
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...