Requesting for PVP Script Seperation

Hsunami

New member
Messages
2
Points
0
I would like to have a separation PVP for 3rd job and class that aren't 3rd job... Thanks. 

 
Hi add in your script,

Code:
if (EAJL_THIRD) {	mes "3rd job script here.";	warp payon, 0, 0;} else {	mes "non 3rd job script here";	warp izlude, 0, 0;}
 
Last edited by a moderator:
EAJL_THIRD <- this is a constant for *eaclass script command, right ?

if wanna check for 3rd job classes, isn't it should be

if ( eaclass( class ) & EAJL_THIRD )or just use
Code:
if ( upper & 4 )
and your map name needs to paranthesis"prontera"

otherwise it will be read as player variable ... which would spam error message with

Code:
[Debug]: mapindex_name2id: Map "0" not found in index list!
 
Code:
if ( eaclass( class ) & EAJL_THIRD ) {	mes "Cool ! You have already advanced to third job !";	close;}if ( eaclass( class ) & EAJL_THIRD == 0 ) {	mes "Hmm, you are not that cool, eh ?";	close;}
 
Back
Top