Jump to content
MakeWebGames

Recommended Posts

Posted

Hello everyone, as few of yous know. I have been working on SamuraiAssault for few months. I believe the game has potential due to last year where I made an incredible amount of money. However, being 16 I had situations were it has made the game really hard to maintain which resulted in the game loosing members. This time around when I release it, it will be better than last year due to finding my faults. I have gain knowledge from my mistakes. This will allow me to make SamuraiAssault a better game.

I need people to help me out. I want to learn how to keep a good game, how I can bring in members to the game. I don't want it to die out like last time. I tried using Kyles Economy Manager however, I am finding it hard using it. So in the future I will be using it.

If people can register and help me out with anything such as finding bugs, errors. Anything which will help me improve the game. I will be happy. Feedback and reviews will be good.

User: Demo

Pass: Demo

http://samuraiassault.com/register.php

  • Like 1
Posted

You asked to register, but gave a demo account? Either way, when I attempted to register, I got this:

"Unfortunately, there has been an error in the code. Don't worry, the developers have been informed."

~G7470

Posted

Sorry for some reason this really confuses me. How do I know what percentage it is added onto the energy field for the users? I want to add 25% for donator and 10% for normal users.

 

`energy` = IF(`donatordays` > 0,
                  LEAST(`energy` + (`maxenergy` / 6), `maxenergy`),
                  LEAST(`energy` + (`maxenergy` / 12.5), `maxenergy`))
Posted
Sorry for some reason this really confuses me. How do I know what percentage it is added onto the energy field for the users? I want to add 25% for donator and 10% for normal users.

 

`energy` = IF(`donatordays` > 0,
LEAST(`energy` + (`maxenergy` / 6), `maxenergy`),
LEAST(`energy` + (`maxenergy` / 12.5), `maxenergy`))

Just treat "maxenergy" as "100" in order to find percentage - so for example:

 

`maxenergy` / 6

 

Turns into:

 

100 / 6

 

Which is ~16.67. This means that for donator days it is increasing by that percentage every time this is called.

Make sense?

~G7470

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...