I got the following stats, hp, speed,strength, defense, attack. Anyone got any formulas they dont mind sharing? Adding or rwnovig stats would not be a problem either.
I want to keep my root directory intact
I want all sub directorys such as
root/sim
root/spudinski
root/hehe
to use the gamefiles directory. of course none of those directorys really exist.
I am trying to redirect files from a directory. I can do it, but I can't do it...
Heres what I got
This will redirect all files from findme.com/WHATEVER to findme.com/gamefiles
RewriteRule ^(.*)$ /gamefiles/$1
So it works to an extent, but now my main files in findme.com does not work. so I tried:
RewriteRule ^(.*)/^(.*)$ /gamefiles/$1
but not it don't redirect files but the main files in findme.com work
Any ideas?