achreshia Posted March 8, 2022 Group: Members Topic Count: 12 Topics Per Day: 0.00 Content Count: 22 Reputation: 0 Joined: 11/12/12 Last Seen: December 27, 2024 Share 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 Link to comment Share on other sites More sharing options...
0 Rynbef Posted March 12, 2022 Group: Forum Moderator Topic Count: 47 Topics Per Day: 0.01 Content Count: 937 Reputation: 124 Joined: 05/23/12 Last Seen: Thursday at 01:31 PM Share 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 Link to comment Share on other sites More sharing options...
0 Patskie Posted March 13, 2022 Group: Members Topic Count: 50 Topics Per Day: 0.01 Content Count: 1702 Reputation: 241 Joined: 09/05/12 Last Seen: November 10, 2024 Share 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 Link to comment Share on other sites More sharing options...
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!
Link to comment
Share on other sites
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.