achreshia Posted March 8, 2022 Posted March 8, 2022 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! Quote
0 Rynbef Posted March 12, 2022 Posted March 12, 2022 @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~ Quote
0 Patskie Posted March 13, 2022 Posted March 13, 2022 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; } Quote
Question
achreshia
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!
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.