Jump to content
MakeWebGames

CrazyT

Members
  • Posts

    708
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by CrazyT

  1. Re: Looking for email verification mod V1   LOL. I was just saying there's free ones.. Meh grow up.. You need to grow up.   of Course im crazy why you think my names CrazyT :roll: lol
  2. Re: change colours without editing the pages [V2]   LOL.. theres no point
  3. Re: Crack The Safe ($2)   My bad didn't know you was new /I deletes my posts :)
  4. Re: Crack The Safe ($5) Remove my post
  5. Re: Crack The Safe ($5) Remove my post
  6. Re: [mccodes V2] Merits Mod [$10]   Yes it can be done.
  7. Re: Looking to buy LOL. $10 wouldn't even buy me a pack of ciggy's lol.
  8. Re: Looking for email verification mod V1   LOL.
  9. Re: [Mccode v2] Newspaper Mod "in Order" What the hell?.....
  10. Re: New type of Crimes!!   Or.. Userlevel 2 = Admin Userlevel 3 = Sec. Userlevel 4 = Assis. if(!in_array($ir['user_level'], array(2))) { //in the array() change it to add more userlevels to have access. exit('Invalid Access'); }
  11. Re: Problem with my v2 Captcha   Lmfao.. That wont work at all. once you open register, it will rand 1 to 9 on both then when u click submit it will change. lol i dont think you know what your on about tbh. lol
  12. Re: Mccodes Lite help Or.. post the code here so we can have a look o,o
  13. Re: Edit Item type - Delete Item type     <?php //remove when adding. o.o function newitemtype() { global $h, $ir, $db; if($ir['user_level'] != 2) { echo 'Invalid Access!'; exit($h->endpage()); } echo '<h3>Add Item Type</h3>'; if(isset($_POST['name'])) { if(empty($_POST['name'])) { echo '<span style="color: red; font-weight: bold;">Error - </span>No name was entered. '; } else { $_POST['name'] = $db->escape($_POST['name']); $db->query("INSERT INTO `itemtypes` VALUES(NULL, '{$_POST['name']}')"); echo 'Item Type '. stripslashes($_POST['name']) .' added.'; stafflog_add('Added item type '. $_POST['name']); } } echo '<form action="staff_items.php?action=newitemtype" method="POST" />'. 'Name: <input type="text" name="name" /> '. '<input type='submit' value="Add Item Type" /></form>'; } Use this one instead of your one XD.
  14. Re: Looking for email verification mod V1 Why even buy one theres quite a few around the forum for this for FREE.. and ya for mccodes. o.o
  15. Re: [V2] Saved Events   LOL. Here we go, another "coder" who thinks he's better than anyone else. It's slightly optimized, by using "union" queries and not creating a whole new table dedicated to a really small modification. I am limited to how much I can optimize it, as the engine doesn't have much options to it's optimization - it would be useless for me to even put that in. LOL!!
  16. Re: [mccodes][V2]changable currency mod because you need to go and edit the file..
  17. Re: [mccodes][V2]changable currency mod   eh? i didn't understand what you said. lol
  18. Re: [mccodes][V2]changable currency mod   Doe's that really matter? No. You can edit it your self.
  19. Re: Mccodes lite mods?   elite is the same as mccodes v1 just stuff added in.
  20. Re: Mccodes lite mods? There easy to change, look around the forum you will see, how to convert them to V1 and V2.. V1 will work with elite without changing anythink if im sure lol.
  21. Re: .htaccess or php help needed   I don't need to.. First put defined('something') or die('Error'); echo 'hi'; ^It will say error. define('something', true); ^Now put that before^ defined('something') or die('Error');
  22. Re: Help needed will pay $20 You ain't going to learn if you just keep uploading the file's if you make a error. If you mess something up you fix it. It's the way to learn. Not just keep uploading the file till it works you aint guna learn ever doing that.
  23. Re: .htaccess or php help needed   Don't you mean   if(!defined('Something')) die('Get out here!');   No. Haunted Dawg's method is correct. So yes, you do mean that.. defined('Something') or die('Get out of here!'); I forgot the 'd' thats all that is what i ment!^
  24. Re: .htaccess or php help needed   Don't you mean   if(!defined('Something')) die('Get out here!');   Don't you mean   if(!defined('Something')) die('Get out here!');   No.
  25. Re: .htaccess or php help needed   Or you could do define('Something') or die('Get out of here!');
×
×
  • Create New...