Jump to content
  • 0

How to Handle this bug


President

Question


  • Group:  Members
  • Topic Count:  27
  • Topics Per Day:  0.01
  • Content Count:  51
  • Reputation:   0
  • Joined:  04/28/12
  • Last Seen:  

Problem : i Have a WOE For Baby Class. but , For Example in 1 guild has ONE job Lord Knight and all the player is baby class. The leader of that guild want to use Emergency call. . in this case normally Lord Knight refused for WOE baby,but, the fact : THE Lord Knight Just Call into that castle. how to handle this?

Sorry for my bad english

Edited by President
Link to comment
Share on other sites

5 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  19
  • Topics Per Day:  0.00
  • Content Count:  713
  • Reputation:   70
  • Joined:  11/08/11
  • Last Seen:  

mapname,150,150,5 script touch#1 -1,500,500,{

OnTouch:

if(Class >= 4096 && Class <= 4112) { end; } else { warp "SavePoint",0,0; } end;

}

something like this

Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10013
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

show your script that disable 3rd job class...

anyway,if you know how to script..then just make use of this..

OnPCLoadMapEvent:
if( strcharinfo(3) == "mapname" && Class >= 4054 ){
mes "You cant Join this WOE";
sleep2 3000;
warp "prontera",155,181;
}
end;

just something similar...with the usage of OnPCLoadMapEvent

@EvilPuncker

OnTouch Event Label are not enough to fix his problem....

large trigger area...able to work...but if i am not mistaken...there might have some issue with large trigger area..

and i cant recall what it's ....

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  19
  • Topics Per Day:  0.00
  • Content Count:  713
  • Reputation:   70
  • Joined:  11/08/11
  • Last Seen:  

@EvilPuncker

OnTouch Event Label are not enough to fix his problem....

large trigger area...able to work...but if i am not mistaken...there might have some issue with large trigger area..

and i cant recall what it's ....

I've never faced any issue with this and used it 2 years straight :P

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  164
  • Reputation:   12
  • Joined:  03/08/12
  • Last Seen:  

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  27
  • Topics Per Day:  0.01
  • Content Count:  51
  • Reputation:   0
  • Joined:  04/28/12
  • Last Seen:  

show your script that disable 3rd job class...

anyway,if you know how to script..then just make use of this..

OnPCLoadMapEvent:
if( strcharinfo(3) == "mapname" && Class >= 4054 ){
mes "You cant Join this WOE";
sleep2 3000;
warp "prontera",155,181;
}
end;

just something similar...with the usage of OnPCLoadMapEvent

@EvilPuncker

OnTouch Event Label are not enough to fix his problem....

large trigger area...able to work...but if i am not mistaken...there might have some issue with large trigger area..

and i cant recall what it's ....

//WOE BABY
prontera,146,163,6 script Baby Castles 729,{
if (Class >=4023 && Class <=4045 || Class >= 4095 && Class <= 4113 ) {
menu "GO ! ! ! ",M_Warp,"Cancel",canceling;

M_Warp:
warp "n_castle",102,102;
close;

canceling:
close;

} else {
mes "You're not Baby Dude...";
mes "Out Yeah. . . ";
emotion e_hmm;
emotion e_wah,1;
close;
}
}
n_castle,102,107,5 script cocolatoz 729,{
mes "[Chocolatoz]";
mes "Hello,"+strcharinfo(0)+" Can i help you?";
next;
menu "Back To Prontera Please",-,"Cancel",LEnd;

warp "prontera",155,179;
close;
LEnd:
mes "[Chocolatoz]";
mes "Ok...";
close;
}

For emistry : thats the script for teleport to n_castle (that script checked players job) but

how to make restricted in ncastle_gef, ncastle_pay, ncastle_pront, ncastle_alde if the leader of the guild using emergency call. . .?

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