Jump to content
MakeWebGames

R!der

Members
  • Posts

    30
  • Joined

  • Last visited

    Never

R!der's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Re: [mccode] Mining mod PM me your game url
  2. Re: [mccode] Mining mod Put it in your 5 minuite cron. which being the energy update one.
  3. Re: sms billing   But thay might make enough money to lose that aswell
  4. Re: need help   <?PHP print" [img=main.gif] "; ?>   That will show a image on your game login but replace "main.jpg" with your own image
  5. Re: need help new background asin change the color? if so find this is login.php   background-color:#000000;   then change #000000 to what ever color code u want there
  6. Re: sms billing Hmm thanks for that.. my game isnt bringin in that much at the moment lol. i think i will hold off that idea till i get more donating members, Thanks LostOne. +1 for the reply
  7. I dont know where to put this so sorry if its in the wrong place.... I am looking for another way for my users to donate to the game... Does anyone know where i can get a good sms provider its something like micropayments Something like TC used to have where the users sends there id to a number, Thanks for your help
  8. Re: ****FREE Mining mod****   Thay dont get much as it is. when i was testing it i used about 10k power and ended up getting about 2k crystals
  9. Re: ****FREE Mining mod****   Oh yea sorry forgot to add that in here.. Well i have max power at 100 and 100 power at default... when the user goes up a mining level thay get +10 max power This can be changed if you dont like the way it is set up... its basicly just set up to fit into my game lol
  10. Re: ****FREE Mining mod**** Its not been tested for lite only tested on 1.1 Post here if it works for lite. Thanks :D
  11. Re: ****FREE Mining mod**** If you look at the coding you will see its a way for users to get crystals/money Its basicly another skill thay can train which would hopfully get your more active members
  12. Re: ****FREE Mining mod**** This is optional open header.php and find $enperc=(int) ($ir['energy']/$ir['maxenergy']*100); $wiperc=(int) ($ir['will']/$ir['maxwill']*100); $experc=(int) ( $ir['exp']/$ir['exp_needed']*100); $brperc=(int) ($ir['brave']/$ir['maxbrave']*100); $hpperc=(int) ($ir['hp']/$ir['maxhp']*100); $enopp=100-$enperc; $wiopp=100-$wiperc; $exopp=100-$experc; $bropp=100-$brperc; $hpopp=100-$hpperc; replace with $enperc=(int) ($ir['energy']/$ir['maxenergy']*100); $wiperc=(int) ($ir['will']/$ir['maxwill']*100); $experc=(int) ( $ir['exp']/$ir['exp_needed']*100); $brperc=(int) ($ir['brave']/$ir['maxbrave']*100); $hpperc=(int) ($ir['hp']/$ir['maxhp']*100); $power=(int) ($ir['power']/$ir['max_power']*100); $minexp=(int) ( $ir['mine_exp']/$ir['mine_needed']*100); $enopp=100-$enperc; $wiopp=100-$wiperc; $exopp=100-$experc; $bropp=100-$brperc; $hpopp=100-$hpperc; $pow=100-$power; $minex=100-$minexp; then find [b]Energy:[/b] {$enperc}% <img src=bargreen.gif width=$enperc height=6><img src=barred.gif width=$enopp height=6> [b]Will:[/b] {$wiperc}% <img src=bargreen.gif width=$wiperc height=6><img src=barred.gif width=$wiopp height=6> [b]Brave:[/b] {$ir['brave']}/{$ir['maxbrave']} <img src=bargreen.gif width=$brperc height=6><img src=barred.gif width=$bropp height=6> [b]EXP:[/b] {$experc}% <img src=bargreen.gif width=$experc height=6><img src=barred.gif width=$exopp height=6> [b]Health:[/b] {$hpperc}% <img src=bargreen.gif width=$hpperc height=6><img src=barred.gif width=$hpopp height=6> replace with [b]Energy:[/b] {$enperc}% <img src=bargreen.gif width=$enperc height=6><img src=barred.gif width=$enopp height=6> [b]Will:[/b] {$wiperc}% <img src=bargreen.gif width=$wiperc height=6><img src=barred.gif width=$wiopp height=6> [b]Brave:[/b] {$ir['brave']}/{$ir['maxbrave']} <img src=bargreen.gif width=$brperc height=6><img src=barred.gif width=$bropp height=6> [b]EXP:[/b] {$experc}% <img src=bargreen.gif width=$experc height=6><img src=barred.gif width=$exopp height=6> [b]Health:[/b] {$hpperc}% <img src=bargreen.gif width=$hpperc height=6><img src=barred.gif width=$hpopp height=6> [b]Power:[/b] {$ir['power']}/{$ir['max_power']} <img src=bargreen.gif width=$power height=6><img src=barred.gif width=$pow height=6> [b]Mine Exp:[/b] {$minexp}% <img src=bargreen.gif width=$minexp height=6><img src=barred.gif width=$minex height=6></td></tr>
  13. Re: ****FREE Mining mod**** Well i have tested it all seems to work fine for me. did'nt find any bugs in it and i tested it quite well while making it. But i am sure improvments can be made to it so it dont look too plain lol
  14. Re: Mining mod Forgot to say you need a cron to update power i have mine in the energy cron file   $query6="UPDATE users SET power=power+5 WHERE power<max_power";
  15. Re: Mining mod Thanks genocide :)
×
×
  • Create New...