RMRK is retiring.
Registration is disabled. The site will remain online, but eventually become a read-only archive. More information.

RMRK.net has nothing to do with Blockchains, Cryptocurrency or NFTs. We have been around since the early 2000s, but there is a new group using the RMRK name that deals with those things. We have nothing to do with them.
NFTs are a scam, and if somebody is trying to persuade you to buy or invest in crypto/blockchain/NFT content, please turn them down and save your money. See this video for more information.
Exp Script

0 Members and 1 Guest are viewing this topic.

**
Rep: +0/-0Level 75
I don't know if it's been asked before, but is there a custom exp script if so can you post a link and if not can someone please make one?

thanks.

***
Rep:
Level 82
We learn by living...
yes custom Exp exists. Robot Unicorn helped me with a script months ago. If you dig through my posts you will find the thread, or you could just click here:

http://rmrk.net/index.php/topic,38266.msg447093.html
« Last Edit: October 24, 2010, 02:26:05 AM by shintashi »

**
Rep: +0/-0Level 75
okay thanks i figured it out, thanks

but is there a way i can make my chars level go up each 10,000 exp?
« Last Edit: November 02, 2010, 12:56:48 AM by Crimson~X »

***
Rep:
Level 82
We learn by living...
okay thanks i figured it out, thanks

but is there a way i can make my chars level go up each 10,000 exp?


I think so, you would have to set the base equation of growth/level to be something like "0" or "1" and then set the gain to 10,000.

Something like this (tested)

Code: [Select]
  def make_exp_list
    actor = $data_actors[@actor_id]
    @exp_list[1] = 0
    for i in 2..100
      if i > actor.final_level
        @exp_list[i] = 0
      else
        @exp_list[i] = ((i*10000) - 10000)
      end
    end
  end
« Last Edit: October 29, 2010, 01:57:57 AM by shintashi »

**
Rep: +0/-0Level 75
man thats fucking awesome thanks so much!! I've been waiting for this sorta thing for to long *snicker*

And to other people who dont know much about scripting such as myself put this part of the script in Game_Actor line 91-93

Spoiler for:
  def make_exp_list
    actor = $data_actors[@actor_id]
    @exp_list[1] = 0
    for i in 2..100
      if i > actor.final_level
        @exp_list = 0
      else
        @exp_list = ((i*10000) - 10000)
      end
    end
  end



Thanks shintashi, that helped me alot! (hopefully it helps some other people.)
« Last Edit: November 03, 2010, 10:17:49 PM by Crimson~X »