Jump to content
MakeWebGames

Uridium

Members
  • Posts

    2,691
  • Joined

  • Last visited

  • Days Won

    85

Everything posted by Uridium

  1. After a few months away well not exactly away but not coding i think i should be good to go and do some more mods. So watch out in the freebies section for ideas that will blow your mind..
  2. If you do this script correctly you could have more than 1 type of key to get you out of jail as long as its ItemID and name are entered.. Example after the include "globals.php"; add $filename="keys.txt";$words=file($filename);shuffle($keys);$key=$keys[0]; // THIS IS FOR YOUR NAMES KEYS $filename="keysID.txt";$words=file($filename);shuffle($keysID);$keyID=$keysID[0]; // THIS IS FOR YOUR KEYS ID now on this part if($i['itmname'] == 'Jail Key') { print " [Use]"; } turn it into if($i['itmname'] == '$keys') { print " [Use]"; } And this part print " [Use]"; Change to print " [Use]"; make two text files one called keys.txt and one called keysID.txt now you can add as many key names and key IDs that you have listed in your game
  3. Ooops my bad i had two pages open and responded to wrong post sorry guys wonderd why i couldnt find it lol
  4. Correct me if im wrong here but i was told that if you post an invention idea Via normal postal mail to yourself that the actual Postafe date is sufficient to say that it is your own creation... as long as the Mail hasnt been defaced or tampered with once received and opened by a lawayer/solicitor to confirm its genuine ?
  5. Well thought out im going to give ya a +10000 anyway even though this silly new forum dont allow Points anymore ;)
  6. Only bit that Concerns me is the approach to giving out Crystals as a reward you may find your bug section filled up with duplicate entries for people trying to claim the reward
  7. nah matey im not suggesting you didnt make the mod im just saying that if it had a link to fixed Bugs users would stop reporting same thing
  8. I modified a bugreport from the freebie section and just like yours i realised you can delete bug reports which is fine but why not have it so Bugs that are repaired users can view from a FIXED BUGS link..
  9. Ive had a copy of this on my PC which was sent to me by MDK666 last year so credit where credits Due. MDK666 :)
  10. I tested your updated version
  11. Working fine.
  12. <?php //This mod is for v2 // CREATED BY BRAD include "globals.php"; $filename="response.txt";$words=file($filename);shuffle($words);$word=$words[0]; $question=($_POST['question']); $ask=" <form action=askghost.php method=POST>Question: <input type=text name=question> <input type=submit value=Ask></form>"; print "<h3>I know you</h3> Welcome to the the ghost home. Here you can type in a question about anything and the ghost will reveal the answer to you. "; if ($question=="") { print $ask; $h->endpage(); exit; } else { if ($question=="$question") { switch(mt_rand(1,1)) { case 1; echo'<h1>'.$word.'</h1>'; break; } } print "<hr />[b]$question[/b] "; print " "; print " [b]"; print "<table width=174 height=156 border=0 cellpadding=0 cellspacing=0> <tr><td background='title.png'><center>$pic</td></tr></table> ";//Background Pic print "$ask"; $h->endpage(); exit; } $h->endpage(); ?>   Now create a txt file called response.txt and add as many outcomes as you want to
  13. Ive recoded it a bit so you only have 1 case instead of 50 and can have up to a billion outcomes if you dont mind me posting it
  14. Tested on v2 worked fine but outcomes need to be larger letters
  15. Remove the stray ELSE on line 250 if your looking at it from here or line 198 if its on a text editor.. Then add } after   return $in; } so it reads return $in; } } $h->endpage(); And it should work.. The else statement isnt needed...
  16. <option value='Ware Wolf'>Ware Wolf</option> Should Be <option value='Werewolf'>Werewolf</option>
  17. You really dont need to use fluent english with PHP as its the same routine for any country the only things that dont relate to englist is anything you use as a sentence example echo ' dfhjksdfhjksdjkfjksdfjk' or print " fjsdfjksdjkfhjksdhfjk " The rest will always be the same no matter what
  18. Shhh lets not confuse him ;)
  19. Im confused is this V2 before any edits or after cos if its after id probably go back and start again. What exactly have you secured and who you trying to RIP OFF... if you can say this is worth $1000 then i suppose that means the next version of MCC should be worth about $5 ( Even with Addons ) Your selling tactics need more work as with your scripts. If its this easy does anyone want to buy my complete test sites files has 12 mods never been released all for a measley $5,000 ;) lol
  20. How about i just make you my Bitch ;)
  21. Hmm this post was ages ago ive been to work since then lol
  22. Tutorial: v1 - v2 Conversion
  23. Then ask for help im sure someone on here even myself will help out.
  24. Or try the easy way Look over every file of MCC and see how its put together. How it add things to database how it calls for things from database then mix n match your scripts if it dont work try again start with small snippets and you'll soon be on your way Just as i did .
×
×
  • Create New...