OpenLink Software

Usage stats on Level up script

 Permalink

an Entity in Data Space: dbkwik.org

These level up scripts are scripts that allow advancing player characters (PCs) based upon levels instead of experience points. The basis for these scripts is the formula converting a level to the number of experience points required for that level: (level * (level - 1) / 2) * 1000 For example, a PC earns level 5 upon gaining (5*4/2)*1000 = 10,000 experience points. void main() { object oPC = GetLastUsedBy(); int nCurrentLevel = GetHitDice(oPC); int nGoalXP = (nCurrentLevel + 1) * nCurrentLevel * 500; if ( GetXP(oPC) < nGoalXP ) SetXP(oPC,nGoalXP); }

Graph IRICount
http://dbkwik.webdatacommons.org7
Alternative Linked Data Views: ODE     Raw Data in: CXML | CSV | RDF ( N-Triples N3/Turtle JSON XML ) | OData ( Atom JSON ) | Microdata ( JSON HTML) | JSON-LD    About   
This material is Open Knowledge   W3C Semantic Web Technology [RDF Data] This material is Open Knowledge Creative Commons License Valid XHTML + RDFa
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License.
OpenLink Virtuoso version 07.20.3217, on Linux (x86_64-pc-linux-gnu), Standard Edition
Copyright © 2009-2012 OpenLink Software