User:Belgrave/Projects

From Fallen Sword Wiki
Jump to: navigation, search

World Area Maps

Inspired by Mowgliks Maps, I decided it should be possible to do something very similar on the wiki. This is a basic idea of how it would look when you take a starting World Area and map out every area until you get to another World Area. This specific example starts at Krul Island. I'm also planning on making it look nice with colors, better formatting, and perhaps a bit more information for each area. You can find the currently finished maps in Category:Travel Maps.

This project is currently on hold while I work on other things (finishing the sortable items lists, item image pages, etc).

New Templates and Stuff

We are now anticipating the addition of Extension:Parserfunctions in the near future. This will allow us to make templates with many extended features. I am in the process of writing templates to take the place of the current page layouts. One of the first of these is Template:Item. Right now they don't work, but they will start working as soon as the proper extensions are installed.

I am also working on a hellforge calculator that can be put on the bottom of the item pages (or anywhere else someone wants one). However, this is a little tricky and is more or less trial and error since I don't know the exact hellforge formula. Currently I'm using something like:

x = stat + (( forge-bonus + level-bonus ) / number-of-stats )

The wiki code for this allowed by Extension:Parserfunctions is:

{{#ifexpr: {{{attack|0}}} > 0 | {{#expr:  {{{attack|0}}} + floor((5+(floor({{{level|0}}}/50)))/(({{#if: {{{attack|0}}}>0|1}} + {{#if: {{{defense|0}}}>0|1}} + {{#if: {{{armor|0}}}>0|1}} + {{#if: {{{hp|0}}}>0|1}} + {{#if: {{{damage|0}}}>0|1}} + {{#if: {{{stamina|0}}}>0|1}})))}} | 0 }}

I'm still running into some problems with things not adding up properly, so I'm open to suggestions on how I can get this working properly.