Jump to content
  • 0

"Enlarge weight limit" is not enabled on default.


HristDead

Question


  • Group:  Members
  • Topic Count:  66
  • Topics Per Day:  0.02
  • Content Count:  167
  • Reputation:   2
  • Joined:  08/01/12
  • Last Seen:  

Title pretty much explains it.

From what i remember this skill should be enabled by default for every class, without having to spend skill points.

It's there in the skill_tree, but the problem is that in-game it asks me to spend points on it.

How can I have them without having to put points? thanks!

Link to comment
Share on other sites

6 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  72
  • Topics Per Day:  0.02
  • Content Count:  2997
  • Reputation:   1130
  • Joined:  05/27/12
  • Last Seen:  

OnPCLoginEvent: if (getskilllv("MC_INCCARRY") < 10) skill "MC_INCCARRY",10,0; end;

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  66
  • Topics Per Day:  0.02
  • Content Count:  167
  • Reputation:   2
  • Joined:  08/01/12
  • Last Seen:  

What if I only want it to work up til level 1?

do I change it like this?

OnPCLoginEvent: if (getskilllv("MC_INCCARRY") < 1) skill "MC_INCCARRY",1,0; end;

Will that not cause trouble for the merchant class, since their max level enlarge weight limit is 10?

Edited by HristDead
Link to comment
Share on other sites


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

you mean like this ?

if ( getskilllv("MC_INCCARRY") < 1 && BaseClass != Job_Merchant ){

this script will not work for merchant class...

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  72
  • Topics Per Day:  0.02
  • Content Count:  2997
  • Reputation:   1130
  • Joined:  05/27/12
  • Last Seen:  

My code would be fine, as it only gives the skill if you're under the specified level.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  138
  • Topics Per Day:  0.03
  • Content Count:  835
  • Reputation:   25
  • Joined:  11/22/11
  • Last Seen:  

i direct disable this skill @.@" but player still can add skill point on it. it's kinda unbalance. player inventory can become very very larges. i also want to know how to make it's cannot be add skill. max lv1.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  81
  • Topics Per Day:  0.02
  • Content Count:  1654
  • Reputation:   583
  • Joined:  08/09/12
  • Last Seen:  

Edit your re\skill_db.txt

36,0,0,0,0,0,0,1,0,no,0,0,0,none,0,        MC_INCCARRY,Enlarge Weight Limit

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