Jump to content
  • 0

quest script lvup job lvup


anginputih

Question


  • Group:  Members
  • Topic Count:  48
  • Topics Per Day:  0.01
  • Content Count:  81
  • Reputation:   1
  • Joined:  01/06/12
  • Last Seen:  

amatsu,208,100,4 script Level UP 55,{

atcommand "@blvl 240";

atcommand "@jlvl 80";

set #redemgive1,1;

end;

}

how this script can only be used six times

so after that looking for the experience itself

as an example novice novice knight Swordman Swordman hight lord knight and the remaining 10 looking for job lvup and lvup a own experience

Link to comment
Share on other sites

6 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  69
  • Topics Per Day:  0.02
  • Content Count:  592
  • Reputation:   31
  • Joined:  11/14/11
  • Last Seen:  

if level of character is above the requirements goto L_NotAllowed

- what is the level u want ?

if ((BaseLevel > 99) && (JobLevel > 50)) goto L_NotAllowed;

L_NotAllowed:

mes "You are not allowed to redeem anymore";

close;

Edited by GM Takumirai
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  48
  • Topics Per Day:  0.01
  • Content Count:  81
  • Reputation:   1
  • Joined:  01/06/12
  • Last Seen:  

if level of character is above the requirements goto L_NotAllowed

- what is the level u want ?

if ((BaseLevel > 99) && (JobLevel > 50)) goto L_NotAllowed;

L_NotAllowed:

mes "You are not allowed to redeem anymore";

close;

I want to increase the level and job level

because if he clicks on lvup npc will rise automatically until lv 240 lv job until 80

the remaining 10 levels to find their own against the monster manual

because I want to hold events at lv 250 lvup

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  42
  • Topics Per Day:  0.01
  • Content Count:  297
  • Reputation:   15
  • Joined:  11/17/11
  • Last Seen:  

Like this?

amatsu,208,100,4 script Level UP 55,{
if(!LvCount) set LvCount, 0;
if(LvCount<=6)
{
 set LvCount, LvCount+1;
 atcommand "@blvl 240";
 atcommand "@jlvl 80";
 set #redemgive1,1;
 end;
 }
}

Edited by Jhedzkie
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  48
  • Topics Per Day:  0.01
  • Content Count:  81
  • Reputation:   1
  • Joined:  01/06/12
  • Last Seen:  

Like this?

amatsu,208,100,4 script Level UP 55,{
if(!LvCount) set LvCount, 0;
if(LvCount<=6)
{
 set LvCount, LvCount+1;
 atcommand "@blvl 240";
 atcommand "@jlvl 80";
 set #redemgive1,1;
 end;
 }
}

npc did not want to appear already me reloadscript

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  42
  • Topics Per Day:  0.01
  • Content Count:  297
  • Reputation:   15
  • Joined:  11/17/11
  • Last Seen:  

apparently, you didn't set proper tabbing.

amatsu,208,100,4<tab>script<tab>Level UP<tab>55,{
if(!LvCount) set LvCount, 0;
if(LvCount<=6)
{
    set LvCount, LvCount+1;
    set BaseLevel, 240;
    set JobLevel, 80;
    set #redemgive1,1;
    end;
 }
}

and yeah, use BaseLevel and JobLevel insted of using atcommand.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  48
  • Topics Per Day:  0.01
  • Content Count:  81
  • Reputation:   1
  • Joined:  01/06/12
  • Last Seen:  

apparently, you didn't set proper tabbing.

amatsu,208,100,4<tab>script<tab>Level UP<tab>55,{
if(!LvCount) set LvCount, 0;
if(LvCount<=6)
{
 set LvCount, LvCount+1;
 set BaseLevel, 240;
 set JobLevel, 80;
 set #redemgive1,1;
 end;
 }
}

and yeah, use BaseLevel and JobLevel insted of using atcommand.

how to make every one job 1-click

examples can 1- click be a novice can not click on the click after changing job

Swordman job can 1-click can not click anymore after changing job

1-click knight can not be clicked again after changing job

high can 1- click a novice can not click on the click after changing job

Swordman 1-click hight can not be clicked again after changing job

lord knight can 1-click max lv lv 240 80 10 level job hunt manual

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...