Page 1 of 1

Ballistic Mystix website goes live!

Posted: Fri Nov 05, 2004 3:44 pm
by aylwyne
Hi everybody,

Our guild, Ballistic Mystix has completed the transition of our website from our old game (Earth and Beyond) to Ryzom. You can see the website here:

Ballistic Mystix

This site is intended as a source for game information. Currently, it contains basic resource information for harvested resources up to Choice (we're not big enough for Excellent/Supreme yet) :) It also contains the information for quartered materials available on the Tryker starting island.

We will continually be entering new information and always strive to make the most complete and accurate reference site we can.

Some things that will be coming to the site soon:
-Crafting center: Pick your resources and preview the stats on the item or find the materials to give the optimum stats.
-Mob info: Find out what mobs are where and what resources they give.
-Maps: Now where did I find that Choice Oath Bark? When we get our maps done, they'll tell you!

I hope you enjoy it as much as we enjoy creating it.


Edit: Ack! i misspelled my own guild name!

Re: Ballistic Mystix website goes live!

Posted: Fri Nov 05, 2004 3:46 pm
by stellus
LOVE the info database.

Favorites >> Add to Favorites =D

Re: Ballistic Mystix website goes live!

Posted: Fri Nov 05, 2004 4:42 pm
by billg1
Exellent site and well put together. That Mat database is superb.

Well done!

Re: Ballistic Mystix website goes live!

Posted: Fri Nov 05, 2004 5:41 pm
by bcharles
Great site! Thanks for putting it up. I have a question, though. In your mats database, how did you figure out what the values are for the various materials? Where do you get that info?

Re: Ballistic Mystix website goes live!

Posted: Fri Nov 05, 2004 6:18 pm
by aylwyne
bcharles wrote:In your mats database, how did you figure out what the values are for the various materials? Where do you get that info?
When you look at the stats for a resource, the little white bars are 60 pixels long. So I created a web form and some code where you can upload a .jpg image of the stats of an item and it counts the number of white pixels in the bar and sets that stat from 0-60 based on that.

I had given some thought to normalizing these values from 0-100 but that'd just cause fractional values and since the specific number isn't as important as the relative difference from one mat to the next, i just left it at that.

Re: Ballistic Mystix website goes live!

Posted: Sat Nov 06, 2004 12:31 am
by bcharles
aylwyne wrote:When you look at the stats for a resource, the little white bars are 60 pixels long. So I created a web form and some code where you can upload a .jpg image of the stats of an item and it counts the number of white pixels in the bar and sets that stat from 0-60 based on that.

I had given some thought to normalizing these values from 0-100 but that'd just cause fractional values and since the specific number isn't as important as the relative difference from one mat to the next, i just left it at that.
As an experiment, I tried your method with the resolution set to 1280x960. I got these values for basic, fine, and choice. (The only mats I had on hand)

Basic: 0, 12, 36
Fine: 9, 21, 45
Choice: 18, 30, 54

Dividing those by .6 to convert to base 100 gives exact values of

Basic: 0, 20, 60
Fine: 15, 35, 75
Choice: 30, 50, 90

I'm guessing the other values are then:

Excellent: 45, 65, 100
Supreme: 60, 80, 100

Re: Ballistic Mystix website goes live!

Posted: Sat Nov 06, 2004 1:53 am
by aylwyne
Hmm, on my screen, at every resolution the game provides, the values work out the same. I always though things like "11" were wierd but I've checked and rechecked.

Edit: Oh, and I just cross referenced on a few resources from http://www.lafekafe.com/ryzom (another good resource site, btw) and they also show the numbers like 11, 39, etc. I think that's just how it is.

Re: Ballistic Mystix website goes live!

Posted: Sat Nov 06, 2004 1:58 am
by bcharles
aylwyne wrote:Hmm, on my screen, at every resolution the game provides, the values work out the same. I always though things like "11" were wierd but I've checked and rechecked.
It's probably a combination of resolution, graphics card, os, rounding error, and the phase of the moon. But if you add just one pixel to some of your values, and then convert to a scale of 0 to 100, they do all come out to multiples of 5, which has got to be more than coincidence.

Edit: having just read your edit.

I suspect that he used the same method as you. I just can't believe that the developers did all their math based on how many pixels would show up in the user interface. The numbers must be based on a 0-100 scale, and it just so happens that 0-60 pixels show up in the UI. I'm fairly convinced that the numbers I came up with are the numbers the developers actually use.

Re: Ballistic Mystix website goes live!

Posted: Sat Nov 06, 2004 2:20 am
by aylwyne
Yeah, you're probably right. At some point, when I start adding the calculations for item stats based on materials used, that will probably start to matter. Until then, I'll just stick with my current processing based off the .jpg files. Mainly 'cause I don't want to start making assumptions on the data until I do some larger controlled testing with crafting and see how those stats are used to calculate item stats.

Re: Ballistic Mystix website goes live!

Posted: Sat Nov 06, 2004 2:32 am
by bcharles
aylwyne wrote:Yeah, you're probably right. At some point, when I start adding the calculations for item stats based on materials used, that will probably start to matter. Until then, I'll just stick with my current processing based off the .jpg files. Mainly 'cause I don't want to start making assumptions on the data until I do some larger controlled testing with crafting and see how those stats are used to calculate item stats.
Yeah, that's what I want to know as well. If I figure anything out, I'll let you know.