Jump to content
MakeWebGames

phoenix201012

Members
  • Posts

    20
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

phoenix201012's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. hey mate i will pay for this mod once its done if ya finish it
  2. TO COMBAT THE REFERAL PROBLEM SIMPLY MAKE A REGISTER2.php use one of many on here or make your own. :) PM me if ya want a lil more help
  3. HERE IS THE FILES :) http://www.mediafire.com/?y4d4ixb8bzh5e42 http://www.mediafire.com/?y4d4ixb8bzh5e42
  4. works for me thanks
  5. do you know where i can get a banner from
  6. yeah but wot i dont get is i used the same code in something else and it worked fine without them
  7. no its was a silly ; at the end of $gained=rand(100,5000); but thanks for the help
  8. what the mod does? The Randomizer Possible outcomes are either gaining money [$3 million - $50 million], crystals [100 - 5000], Azure Gems [1 - 15], Will Potions [1 - 5] & Turns [100 - 1000]
  9. First Posted Mod and this has Doubled my donator since i used it as a donators item. first open Inventory.php and find if($i['effect1_on'] || $i['effect2_on'] || $i['effect3_on']) { print " [[url='itemuse.php?ID={$i[']Use[/url]]"; }   Add Below if($i['itmname'] == 'Randomizer') { print " [[url='itemuse.php?ID={$i[']Use[/url]]"; }   Open Itemuse.php find if(!$r['effect1_on'] && !$r['effect2_on'] && !$r['effect3_on']) { die("Sorry, this item cannot be used as it has no effect."); }   replace with   if($r['itmname'] == 'Randomizer') { $chance = rand(1,6); if ($chance == 1) { $gained=rand(3000000,50000000); print "You Got From The Randomizer [b]\$$gained[/b]. "; $db->query("UPDATE users SET money=money+$gained WHERE userid=$userid"); } if ($chance == 2) { $gained=rand(100,5000); print "You Got From The Randomizer [b]$gained Crystals[/b]. "; $db->query("UPDATE users SET crystals=crystals+$gained WHERE userid=$userid"); } if ($chance == 3) { $gained=rand(1,15); print "You Got From The Randomizer [b]$gained Azure Gem(s)[/b]. "; $db->query("UPDATE users SET AzureGems=AzureGems+$gained WHERE userid=$userid"); } if ($chance == 4) { $gained=rand(1,5); print "You Got From The Randomizer [b]$gained Will Potion(s)[/b]. "; $db->query("INSERT INTO inventory VALUES('',2,$userid,$gained)"); } if ($chance == 5) { $gained=rand(100,1000); print "You Got From The Randomizer [b]$gained Turns[/b]. "; $db->query("UPDATE users SET turns=turns+$gained WHERE userid=$userid"); } if ($chance == 6) { $gained=rand(1,10); print "You Got From The Randomizer [b]$gained Level Up(s)[/b]. "; $db->query("INSERT INTO inventory VALUES('',147,$userid,$gained)"); } } else { if(!$r['effect1_on'] && !$r['effect2_on'] && !$r['effect3_on']) { die("Sorry, this item cannot be used as it has no effect."); } }   You can change the code to suit you. Enjoy.
  10. i cant get it to work could you post the full code please ino its cheeky lol
  11. Is there a way you can use something like this in item send to display who you are sending to before you send. ino loads of peolpe send items to wrong person by id.
  12. Does Anyone here Know how to add Referals to hall of fame. i tryed but its too big of a challege for me.
  13. nope i got it working installed find but i assigned it to a page and nothing what it the mod ment to do??
  14. This Mod Dont Work For Me I tested it out but nothing happend i installed it correctly if anyone ha got this working please can you tell me how it works.
×
×
  • Create New...