Jump to content
  • 0

Quest with experience


Question

Posted

i got a lil confuse, i can make a quest to get an item

but the weird is i can't make the quest script to get an experience..

i need a little help here.

thanks

3 answers to this question

Recommended Posts

Posted

i got a lil confuse, i can make a quest to get an item

but the weird is i can't make the quest script to get an experience..

i need a little help here.

thanks

getexp <base xp>,<job xp>;

its can help ?

Posted

i got a lil confuse, i can make a quest to get an item

but the weird is i can't make the quest script to get an experience..

i need a little help here.

thanks

getexp <base xp>,<job xp>;

its can help ?

can you give me much detail on how to use it ?

Posted
*getexp <base xp>,<job xp>;

This command will give the invoking character a specified number of base and job
experience points. Can be used as a quest reward. Negative values won't work.
   getexp 10000,5000;


You can also use the "set" command with the constants defined in 'db/const.txt':
   // These 2 combined has the same effect as the above command
   set BaseExp,BaseExp+10000;
   set JobExp,JobExp+5000;

You can also reduce the amount of experience points:
   set BaseExp,BaseExp-10000;

Note that 'getexp' is now subject to the 'quest_exp_rate' config option, which
adjusts the gained value. If you want to bypass this, use the 'set' method.

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...