Menu
News
All News
Dungeons & Dragons
Level Up: Advanced 5th Edition
Pathfinder
Starfinder
Warhammer
2d20 System
Year Zero Engine
Industry News
Reviews
Dragon Reflections
White Dwarf Reflections
Columns
Weekly Digests
Weekly News Digest
Freebies, Sales & Bundles
RPG Print News
RPG Crowdfunding News
Game Content
ENterplanetary DimENsions
Mythological Figures
Opinion
Worlds of Design
Peregrine's Nest
RPG Evolution
Other Columns
From the Freelancing Frontline
Monster ENcyclopedia
WotC/TSR Alumni Look Back
4 Hours w/RSD (Ryan Dancey)
The Road to 3E (Jonathan Tweet)
Greenwood's Realms (Ed Greenwood)
Drawmij's TSR (Jim Ward)
Community
Forums & Topics
Forum List
Latest Posts
Forum list
*Dungeons & Dragons
Level Up: Advanced 5th Edition
D&D Older Editions
*TTRPGs General
*Pathfinder & Starfinder
EN Publishing
*Geek Talk & Media
Search forums
Chat/Discord
Resources
Wiki
Pages
Latest activity
Media
New media
New comments
Search media
Downloads
Latest reviews
Search resources
EN Publishing
Store
EN5ider
Adventures in ZEITGEIST
Awfully Cheerful Engine
What's OLD is NEW
Judge Dredd & The Worlds Of 2000AD
War of the Burning Sky
Level Up: Advanced 5E
Events & Releases
Upcoming Events
Private Events
Featured Events
Socials!
EN Publishing
Twitter
BlueSky
Facebook
Instagram
EN World
BlueSky
YouTube
Facebook
Twitter
Twitch
Podcast
Features
Top 5 RPGs Compiled Charts 2004-Present
Adventure Game Industry Market Research Summary (RPGs) V1.0
Ryan Dancey: Acquiring TSR
Q&A With Gary Gygax
D&D Rules FAQs
TSR, WotC, & Paizo: A Comparative History
D&D Pronunciation Guide
Million Dollar TTRPG Kickstarters
Tabletop RPG Podcast Hall of Fame
Eric Noah's Unofficial D&D 3rd Edition News
D&D in the Mainstream
D&D & RPG History
About Morrus
Log in
Register
What's new
Search
Search
Search titles only
By:
Forums & Topics
Forum List
Latest Posts
Forum list
*Dungeons & Dragons
Level Up: Advanced 5th Edition
D&D Older Editions
*TTRPGs General
*Pathfinder & Starfinder
EN Publishing
*Geek Talk & Media
Search forums
Chat/Discord
Menu
Log in
Register
Install the app
Install
Community
General Tabletop Discussion
*Geek Talk & Media
Excel party xp calculator for 3.5e!
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="Othmaar" data-source="post: 1500844" data-attributes="member: 18749"><p>I am a little new to this XP thing, I just accepted the tables in the books. However, a friend of mine borrowed my DMG and I need it tomorrow. So I searched the net to find a table and ended up here. I used the VB code above but had do modify it to simplified script form.</p><p></p><p>It seems to me that L4 gets the same amount of XP as L1-3. I cannot see anything wrong with my code. Is L4 supposed to get the same as L1-3?</p><p></p><p>I made a simple asp script to create a table. It can be viewed here <a href="http://80.202.86.224/tdz/dnd/xp.asp" target="_blank">XP table</a> (EDIT 1: I have no idea what happened to the script. Suddenly all variables are converted to strings I am working on that. EDIT 2: Fixed. Apparently the server looks at the input type in the html form! I changed it to number, which is an invalid type btw, and then it worked!)</p><p></p><p>My Code:</p><p>[CODE]</p><p>Public Function Experience(ByVal LVL, ByVal CR)</p><p> If LVL <= 3 THEN LVL = 3</p><p> Dim XP</p><p> XP = (300 * LVL)</p><p> For above = (LVL + 1) To CR Step 1</p><p> If Int(above - LVL) <> (above - LVL) Then</p><p> XP = XP * (3 / 2)</p><p> Else</p><p> XP = XP * (4 / 3)</p><p> End If</p><p> Next</p><p> For below = (LVL - 1) To CR Step -1</p><p> If Int(LVL - below) <> (LVL - below) Then</p><p> XP = XP / (3 / 2)</p><p> Else</p><p> XP = XP / (4 / 3)</p><p> End if</p><p> Next</p><p> If CR = 1 Then</p><p> IF XP >= 300 Then XP = 300</p><p> End If</p><p> Experience = Int(XP)</p><p>End Function</p><p>[/CODE]</p></blockquote><p></p>
[QUOTE="Othmaar, post: 1500844, member: 18749"] I am a little new to this XP thing, I just accepted the tables in the books. However, a friend of mine borrowed my DMG and I need it tomorrow. So I searched the net to find a table and ended up here. I used the VB code above but had do modify it to simplified script form. It seems to me that L4 gets the same amount of XP as L1-3. I cannot see anything wrong with my code. Is L4 supposed to get the same as L1-3? I made a simple asp script to create a table. It can be viewed here [URL=http://80.202.86.224/tdz/dnd/xp.asp]XP table[/URL] (EDIT 1: I have no idea what happened to the script. Suddenly all variables are converted to strings I am working on that. EDIT 2: Fixed. Apparently the server looks at the input type in the html form! I changed it to number, which is an invalid type btw, and then it worked!) My Code: [CODE] Public Function Experience(ByVal LVL, ByVal CR) If LVL <= 3 THEN LVL = 3 Dim XP XP = (300 * LVL) For above = (LVL + 1) To CR Step 1 If Int(above - LVL) <> (above - LVL) Then XP = XP * (3 / 2) Else XP = XP * (4 / 3) End If Next For below = (LVL - 1) To CR Step -1 If Int(LVL - below) <> (LVL - below) Then XP = XP / (3 / 2) Else XP = XP / (4 / 3) End if Next If CR = 1 Then IF XP >= 300 Then XP = 300 End If Experience = Int(XP) End Function [/CODE] [/QUOTE]
Insert quotes…
Verification
Post reply
Community
General Tabletop Discussion
*Geek Talk & Media
Excel party xp calculator for 3.5e!
Top