Jump to content
MakeWebGames

tranz_fusion

Members
  • Posts

    14
  • Joined

  • Last visited

    Never

tranz_fusion's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. Re: [V2] Give Money To Tramps EDITED   There's this thing we use in the english language called a PERIOD. Try it.
  2. Re: Basic Stock Market [V2]   Or know what the hell you are doing before adding it.. :wink:
  3. Re: [mccode] How to Setup PayPal Instant Payment Notification - Free!   Ok, smart guy. Tell me exactly how this is going to work if; A. Paypal doesn't have a logged Session, nor a userid. B. You put the code for the crediting items in the INVALID check. (see below)   else if (strcmp ($res, "INVALID") == 0) { // log for manual investigation This area should be used for Invalid attempts, moron. Stop copy/pasting other peoples codes and taking wild guesses how things work and go back to making HTML pages.
  4. Re: [mccode] How to Setup PayPal Instant Payment Notification - Free!     Did you even LOOK at what you are writing? You are a fucking moron. Do not try to post any more mods. This will NOT work.
  5. Re: Help with gangs please Added a new field to the Gang table and the create gang query is missing it.
  6. Re: adding a crime panel in admin panel   lol, i bet its cuz when this mod was made, their wasnt any crime exp... i believe thats a new edition to V2? in v1.1 and lite, i believe the Exp was calculated off the successmoney... perhaps im wrong :-D i'm using lite. i've had this same install for about 5 months.
  7. Re: adding a crime panel in admin panel   So uhh, I couldn't figure out why the crimes i created with this mod wasn't giving any EXP. After looking over the code again, I found that you didn't even add an option for EXP. Just FYI. :o
  8. Final Pricing Structure   Speelling
  9. Mod ideas An Equip function for weapons. :whistle:
  10. adding a crime panel in admin panel  
  11. adding a crime panel in admin panel   do this...   OPEN global_func.php ADD: function crimegroup_dropdown($connection,$ddname="crimegroups",$selected=-1) { $ret="<select name='$ddname' type='dropdown'>"; $q=mysql_query("SELECT * FROM crimegroups ORDER BY cgID ASC",$connection); if($selected == -1) { $first=0; } else { $first=1; } while($r=mysql_fetch_array($q)) { $ret.="\n<option value='{$r['cgID']}'"; if ($selected == $r['cgID'] || $first == 0) { $ret.=" selected='selected'";$first=1; } $ret.= ">{$r['cgNAME']}</option>"; } $ret.="\n</select>"; return $ret; } OPEN admin.php FIND: Crime Group: <input type='text' name='crimeGROUP' /> REPLACE WITH: Crime Group: ".crimegroup_dropdown($c,'crimeGROUP')." FIND: Crime Group: <input type='text' name='crimeGROUP' value='{$itemi['crimeGROUP']}' /> REPLACE WITH: Crime Group: ".crimegroup_dropdown($c,'crimeGROUP')." SAVE CLOSE FILES.   Tested / Working.
  12. Sell all button  
  13. Sell all button just putting this:   <form action='itemsell.php' method='get'> <input type='hidden' name='ID' value='{$_GET['ID']}' /> Quantity: <input type='text' name='qty' value='{$r['inv_qty']}' size='3' /> <input type='submit' value='Sell Items' style='width:100px;' /> </form>   is much more effecient. also, you missed a space at the end of your last input. should be />.
  14. This will take crystals from people when you mug them, just like it takes money from them. NOTES: This will take a percentage of crystals. So the more crystals they have, the more this will take. Just like the money.
×
×
  • Create New...