Jump to content
  • 0

EXP LIMITATION for 99/70 but the max level is 255


Ice Bear

Question


  • Group:  Members
  • Topic Count:  27
  • Topics Per Day:  0.01
  • Content Count:  159
  • Reputation:   26
  • Joined:  11/20/11
  • Last Seen:  

ive seen this line

if(sd->status.base_level >= 99)
		base_exp = 0;

from this link wondering if this is posible that the variable inside src can be fetch to an npc script? to trigger the toggle


if(sd->status.base_level >= 99 && noexp == 1)
		base_exp = 0;

//then the noexp can be set using npc

veil,143,38,4	script	Exp Lock	105,{

menu "Exp Lock On",EXPON,"Exp Lock Off",EXPOFF;

EXPON:
set noexp,1;
dispbottom "Exp Lock On "+.explock+" ";
end;

EXPOFF:
set noexp,0;
dispbottom "Exp Lock Off "+.explock+" ";
end;

}

@goddameit @AnnieRuru @Emistry @Dastgir @pajodex @Secrets@Functor

anyone please

 

Edited by DaemonSpade
Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

  • Group:  Developer
  • Topic Count:  36
  • Topics Per Day:  0.01
  • Content Count:  587
  • Reputation:   431
  • Joined:  01/26/16
  • Last Seen:  

Yes, it is possible. But your act of mass-mentioning people made me decide that I will shut up ?

Link to comment
Share on other sites

  • 0

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

if(sd->status.base_level >= 99 && pc_readglobalreg(sd, add_str("noexp")) == 1)
		base_exp = 0;

 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  27
  • Topics Per Day:  0.01
  • Content Count:  159
  • Reputation:   26
  • Joined:  11/20/11
  • Last Seen:  

8 hours ago, Secrets said:

Yes, it is possible. But your act of mass-mentioning people made me decide that I will shut up ?

sorry about that sir secret and thanks for selling me one of your script the woe time base rewarder ?

7 hours ago, Emistry said:

if(sd->status.base_level >= 99 && pc_readglobalreg(sd, add_str("noexp")) == 1)
		base_exp = 0;

 

thank you emistry ?

Link to comment
Share on other sites

  • 0

  • Group:  Developer
  • Topic Count:  36
  • Topics Per Day:  0.01
  • Content Count:  587
  • Reputation:   431
  • Joined:  01/26/16
  • Last Seen:  

16 hours ago, DaemonSpade said:

thanks for selling me one of your script the woe time base rewarder

how is this even related to this topic? i'm turning off the notifications.

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