Jump to content
MakeWebGames

InToXiDaTiOn

Members
  • Posts

    10
  • Joined

  • Last visited

    Never

Recent Profile Visitors

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

InToXiDaTiOn's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Re: [FREE] DPS TO ITEMS V1 [MCCODES] [uPDATED] :-D its called wrong place, you can place stuff wrong which is why errors tell you that if it doesn't work then post the error you get here...
  2. Re: [FREE] DPS TO ITEMS V1 [MCCODES] [uPDATED] Your placing it wrong then :-D
  3. Re: [FREE] DPS TO ITEMS V1 [MCCODES] ok i was just trying to help, doesn't just have to be used for dps it can be used for any type of item you want this will help people who get v1 and want to add a energy potion it has a little use there i think? Added a Energy Potion,As many games want them and mccodes doesn't come with them.
  4. Re: [FREE] DPS TO ITEMS V1 [MCCODES] Yer maybe just thought it might be useful to some people :? :-)
  5. Re: [FREE] DPS TO ITEMS V1 [MCCODES] lol :-) ok but this does the job why would you need a more advanced one ? just doesnt make sence
  6. Re: [FREE] DPS TO ITEMS V1 [MCCODES] What do you mean :?
  7. Re: [FREE] DPS TO ITEMS V1 [MCCODES] Maybe it has but the others never seemed to work as far as im aware but this one should work fine :-)
  8. Make items for All your dps name them what you want but you will have to add them names to the itmname part for each one in both of the parts of code. First Open Inventory.php Add at bottom with the rest if($i['itmname'] == ' DP NAME PACK HERE') { echo " [[url='itemuse.php?ID={$i[']Use[/url]]"; }   This provides the use button on that dp just copy this for all your dps and rename the item name part. Then open itemuse.php add this in there with the others edit it to suit your dps if($r['itmname'] == 'DP NAME HERE') { mysql_query("UPDATE users SET donatordaysdays=donatordays+30 WHERE userid=$userid",$c); mysql_query("UPDATE users SET crystals=crystals+100 WHERE userid=$userid",$c); mysql_query("UPDATE users SET money=money+1500 WHERE userid=$userid",$c); mysql_query("UPDATE users SET iq=iq+30 WHERE userid=$userid",$c); }   Do as many of them as you need for your DPS then save and test also you will need to edit the numbers so that it provides what you need   Thanks InToXiDaTiOn   Updated: Want a energy potion? follow this same as above just a different query   if($i['itmname'] == 'Energy Potion') { echo " [[url='itemuse.php?ID={$i[']Use[/url]]"; }     if($r['itmname'] == 'Energy Potion') { mysql_query("UPDATE users SET energy=maxenergy WHERE userid=$userid",$c); }   Then make a item called Energy Potion and test it and there you go you have a energy potion which you can make real cash off if you add to dps or even just have like will potions, Thanks InToXiCaTiOn
×
×
  • Create New...