Jump to content
MakeWebGames

POG1

Members
  • Posts

    1,419
  • Joined

  • Last visited

Everything posted by POG1

  1. Re: Looking for code paying $5 This kid is a looser, i just said i will do it for him. As soon as I ask him to pay he says that he will pay after he has tested it, then goes onto claiming i'm a game hacker. Dont waste your time people....
  2. Re: Hey Need a lil help on exp, Try this: ALTER TABLE `users` CHANGE `exp` `exp` DECIMAL( 52, 4 ) NOT NULL DEFAULT '0.0000'
  3. POG1

    Criminal Wars

    Re: Criminal Wars The ingame layout looks to generic.
  4. Re: Inventory Help It sounds like it isn't adding the item into the inventory table.
  5. Re: Who can create Game Designs - Login pages/headers etc Depending on how complex it is normally arround the $30 mark
  6. Re: Who can create Game Designs - Login pages/headers etc I will turn a design into a page for you if needed.
  7. POG1

    New game

    Re: New game I like blue but not super blue (#00f)
  8. POG1

    How Would I do this?

    Re: How Would I do this?   Your stuck if it is 500..   if($blah < 500) { //less than 500 } else { //more than 500 or = to 500 }
  9. Re: [Mc Codes V2] Crack The Safe $1 I saw this mod like a year ago and you say that you ara aware of the mistakes and havent fixed them That shows you most probably haven't coded this and dont have a clue.
  10. POG1

    New game

    Re: New game It's a bit too blue...
  11. Re: looking for template (pay up 2 ?30) If you get the grafix i will create the layout for 30. xHTML & CSS valid and built the proper way.
  12. Re: Inventory pic, 2 bucks for a small fix. foreach of the equip items add this code, you may need to change the name of the itmpic if you have it called differently.   echo '[img=itmpics/'.(($equip[$ir['equip_bracelet']]['itmpic']) ? $equip[$ir['equip_bracelet']]['itmpic'] : 'noitem.jpg').']'; // if that dont work you could check where // abouts the values are by using this.. echo '<pre>'; print_r($equip); echo '</pre>';   *by the way, there was a tip for a easier way to do it in bold ;)
  13. Re: Hospital Java Countdown Ok cool, can i see an exmple please? :)
  14. Re: Hospital Java Countdown It would change gameplay a lot but it wouldn't be a tricky task to acheive is what i ment. The issue with the items to reduce hospital times is easy, simply edit the item use file.
  15. Re: Hospital Java Countdown @shreck. It isn't a huge addition it just takes a lot of editing. It would be best to create a text file and write a tutorial showing the steps needed to go thorugh.
  16. Re: CLASS There are loads of settings which i dont like, i would rather use a simple class for it
  17. Re: [uRGENT] Help with my Code! [mcCodes v2]   Easy.. INSERT INTO `settings` (`conf_name` ,`conf_value`) VALUES ('game_message', 'IT WORKS!!!!');
  18. Re: Ranks Mod!!!!   That is still useless code hardley all of that is needed lol, here. Cleaner code! <?php include("globals.php"); if($ir['jail'] OR $ir['hospital']) { die('<font color="red">This page cannot be accessed while in jail or hospital.</font>'); } echo ' <h3><font color="white">Level Ranks</font></h3> <font color="white">Welcome To Level Ranks here you will see your ranks and what they will become as you level up, to become a different rank when you reach the certain level ask a staff member to change your rank.</font>'; echo ' <table border="1" width"90%" bordercolor="#939393"> <tr align="center"> <th>Rank</th> <th>Name</th> <th>Level</th> </tr> <tr align="center"> <td>[img=rank1.png]</td> <td>Private</td> <td>1</td></tr> <tr align="center"> <td>[img=rank2.png]</td> <td>Corporal</td> <td>100</td> </tr> <tr align="center"> <td>[img=rank3.png]</td> <td><center>Sergeant</td> <td>125</td> </tr> <tr align="center"> <td>[img=rank4.png]</td> <td>Sergeant Major</td> <td>150</td> </tr> <tr align="center"> <td>[img=rank5.png]</td> <td>Second Lieutenant</td> <td>175</td> </tr> <tr align="center"> <td>[img=rank6.png]</td> <td>First Lieutenant</td> <td>200</td> </tr> <tr align="center"> <td>[img=rank7.png]</td> <td>Captain</td> <td>225</td> </tr> <tr align="center"> <td>[img=rank8.png]</td> <td>Major</td> <td>250</td> </tr> <tr align="center"> <td>[img=rank9.png]</td> <td>Lieutenant Colonel</td> <td>275</td> </tr> <tr align="center"> <td>[img=rank10.png]</td> <td>Colonel</td> <td>300</td> </tr> <tr align="center"> <td>[img=rank11.png]</td> <td>Brigadier General</td> <td>325</td> </tr> <tr align="center"> <td>[img=rank12.png]</td> <td>Major General</td> <td>350</td> </tr> <tr align="center"> <td>[img=rank13.png]</td> <td>Lieutenant General</td> <td>375</td> </tr> <tr align="center"> <td>[img=rank14.png]</td> <td>General</td> <td>400</td> </tr> <tr align="center"> <td>[img=rank15.png]</td> <td>General of the Army</td> <td>500</td> </tr> <tr align="center"> <td>[img=rank16.png]</td> <td>General of the Armies</td> <td>750</td> </tr> <tr align="center"> <td>[img=rank17.png]</td> <td>General Of Wars</td> <td>1000</td> </tr> </table>'; $h->endpage(); ?>   Cleaner code!, lol.   The code may look cleaner but the file will be bigger in size. If you were to use a list (ul and li) allong with CSS you could acheive something with a lot less code :)
  19. Re: Hospital Java Countdown   I spelled it incorrectly on purpose lol
  20. Re: Game Ranks Mod   // // Get Game Rank // @Purpose - Get the rank name of the user from their level // @Pram - integer // @Return - string // get_game_rank($level) { // You will need to finish this array with the additional ranks. :) $ranks = array("#1 First Newbie","#2 First Newbie","#3 Beginner","#4 Not Experienced","#5 Rookie",); // If the users level is more than is in the array return the string. // or it will return the rank as normal. return ($level > count($ranks)) ? "#99 WINNER" : $ranks[$level]; }   I commented it to give some help :)
  21. Re: [uRGENT] Help with my Code! [mcCodes v2] No offence but is this really needed? echo sprintf('%s',stripslashes($he->text));   @CainFool You could add the message bit to the settings table. Then all you would need to do is something like this into the header;   if(isset($set['game_message'])) { echo '<div id="gameMessage">'. $set['game_message']. '</div>'; }
  22. Re: dropdown menu <select name="colours"> <option value="red">Red</option> <option value="green">Green</option> <option value="blue">Blue</option> </select> Like that??
  23. Re: Hospital Java Countdown   $hospitalTimeInMins = 10; // 10 mins $hospitalTimeUsingTimestamp = time() + ($hospitalTimeInMins * 60); // add the mins in seconds onto now.   Thats the best method, also the title says 'java'. Java is a totally different language to JavaScript. :) *edit: it seems i cannot spel hospital
  24. Re: CLASS mysql class as in tto use on a project. I have found ADOdb but it is pretty tricky to get working
  25. Re: AJAX Search User [$10] It is coded properly (as good as MC craps gets). Valid xHTML. Valid CSS & easy to change colours. PHP works efficently. $10 is a good price I think
×
×
  • Create New...