Drakkus Posted June 17, 2013 Group: Members Topic Count: 39 Topics Per Day: 0.01 Content Count: 386 Reputation: 15 Joined: 11/17/11 Last Seen: September 13, 2024 Share Posted June 17, 2013 (edited) Hi, just wanna ask, why is it doesn't work out, did i missed something Ughh...?! frontier.gat,139,219,0 script Portal 45,{ if (class < 4008 || class > 4022 || BaseLevel < 254 || JobLevel < 98) goto L_Accept; mes "[ ^0000FF"+strcharinfo(0)+"^000000 ]"; mes "It seems that, i can't enter?"; emotion e_hmm; close2; warp "SavePoint",0,0; end; L_Accept: warp "ars_dun04",51,17; end; } Edited June 17, 2013 by Vlync Quote Link to comment Share on other sites More sharing options...
-SkittleNugget- Posted June 17, 2013 Group: Members Topic Count: 11 Topics Per Day: 0.00 Content Count: 318 Reputation: 54 Joined: 12/23/12 Last Seen: July 1, 2017 Share Posted June 17, 2013 frontier.gat,139,219,0 script Portal 45,{ if ((class <= 4008 && class >= 4022) && (BaseLevel <= 254 || JobLevel <= 98)) { warp "ars_dun04",51,17; end; } mes "[^0000FF"+strcharinfo(0)+"^000000]"; mes "It seems that, I can't enter?"; emotion e_hmm; close2; warp "SavePoint",0,0; end; } The format messed up here. Is this how you wanted it ? Quote Link to comment Share on other sites More sharing options...
Drakkus Posted June 17, 2013 Group: Members Topic Count: 39 Topics Per Day: 0.01 Content Count: 386 Reputation: 15 Joined: 11/17/11 Last Seen: September 13, 2024 Author Share Posted June 17, 2013 (edited) frontier.gat,139,219,0 script Portal 45,{ if ((class <= 4008 && class >= 4022) && (BaseLevel <= 254 || JobLevel <= 98)) { warp "ars_dun04",51,17; end; } mes "[^0000FF"+strcharinfo(0)+"^000000]"; mes "It seems that, I can't enter?"; emotion e_hmm; close2; warp "SavePoint",0,0; end; } The format messed up here. Is this how you wanted it ? As long as the script works =D Thank YOU! Edited June 17, 2013 by Vlync Quote Link to comment Share on other sites More sharing options...
-SkittleNugget- Posted June 17, 2013 Group: Members Topic Count: 11 Topics Per Day: 0.00 Content Count: 318 Reputation: 54 Joined: 12/23/12 Last Seen: July 1, 2017 Share Posted June 17, 2013 What is the error. There is no errors just checked. Change: BaseLevel <= 254 || JobLevel <= 98 Set to : BaseLevel <= 254 && JobLevel <= 98 Quote Link to comment Share on other sites More sharing options...
Question
Drakkus
Hi, just wanna ask, why is it doesn't work out, did i missed something Ughh...?!
Link to comment
Share on other sites
3 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.