Jump to content
MakeWebGames

spellbyte ®

Members
  • Posts

    132
  • Joined

  • Last visited

    Never

Everything posted by spellbyte ®

  1. Re: Free Jail Features V1.00000000 Relesed! look for the query that takes the cost of the bust, I.E the brave aboe that add this $bustexp=rand(1,100); mysql_query("UPDATE users SET exp=exp+$bustexp WHERE userid=$userid"); thatss just off the top of my head, you might need to change the userid variable to match whatever it is in your file
  2. Re: Ajax chat script ok this isn't working for me, i'm trying to add it so that it shows up in the header, so when i use that suggestion by vorlen it displays this {$ir["us | test any ideas?
  3. Re: **!!Help!!**   how did ur users react to that idea
  4. Re: Ajax chat script how would i go about automatically inserting the players username before each message was posted
  5. Re: how wants to help me? you all rave about nhow great it is being older, oh how much u all have to learn, i would love to be 2 again, no cares in the world except deciding which toy to play with today, and how to get the parents nerves again ,,, if only :P
  6. Re: **!!Help!!** i am currently suffering from an inflated economy, I have placed House tax that is taken every day, some of the users are probably gonna moan about it but PAH to them all :P i think it's gotta be the quickest way to decrease the money in any game
  7. Re: level 1000   I agree, the economy is totally shot in my game now, it's down to a bug i had that noone told me about, and the game has been going on far to long to even considfer a reset, i just have to think of a way to get it back to a reasonable standard now. more chance of pigs getting a pilots license
  8. Re: level 1000 i have now got this fixed, i had to edit global func too, it wasn't that exact fix from lostone but it certainly pointed me in the right direction, thanks for that m8
  9. Re: level 1000 ok i dont have that in my header, any other thoughts?
  10. a couple of users have reached lvl 1000 , ridiculously high i know but anyway when they reach lvl 1000 there EXP bar keeps fluctuating between - and +, to see what the problem was i made my lvl 1000 and i have now got -307% and it keeps increasing by 100 everytime i refresh the page, my EXP field is set to "decimal 18,4", not sure if that could be the problem, anyone have any ideas please
  11. Re: MC2 Codes - Are they worth it? what version are u running?
  12. Re: ****FREE Mining mod**** in a POW camp copntraband would be the same as in a normal prsion, illegal items such as drugs, and such alike, but especiallyu in a POW camp contraband would mean anything from tobacco to chocolate, simple luxuryies that prisoners would not be allowed, that is back in the day of when prison meant prison, not like it is today where prisoners have it easier that on the straight side of the bars, hell they even get sky tv and internet access these days, PAH and they call it punishment :P
  13. Re: ****FREE Mining mod**** one idea u could change it to is bribing the guards to bring in some contraband or something along those lines
  14. Re: MC2 Codes - Are they worth it? it's all to do with the bumph at the top, for lite u need to knock off the crystal money format at least for the older version of lite but since the updated version has been out i'm pretty sure that all lite files are pretty much the same as v1.1 apart from the obvious gangs and certain market files. and for v2 all u need to do is remove everything from </php to $h->menuarea(); and replace it with   <?php include "sglobals.php";   or something like that it's rteally that simple
  15. Re: old, but good simply amazing
  16. Re: funny pics topic
  17. Re: Shafted by LunarPages I have recently improved my crons a bit more, I had a cpl of crons running each minute seperately when i could of just had them running from the same files :P, plus i emptied a few of my log tables that were un-needed, it's definatel;y improved the performance of my game some what, my attack page still takes some time to load up but i've got quite a few queries running on it for the ammo side of it, burt beggars cant be choosers, I unlike many others haven't got enough donations coming in to rent a dedicated server just yet, and i dont personally see the need for one just yet, until i get a good 5k plus players i dont think i'll need one **EDIT** Good to see you back with us again MD, haven't seen you about the DBS forums for some time :roll:
  18. Re: Shafted by LunarPages i think kronow was offered the same "pro-rated" refund and if im not mistaken this means that the refund will be put towards the cost of the upgraded VPS server, not very helpful really
  19. Re: Shafted by LunarPages i have also had problems with the crons, a few days ago they said that they had disabled my crons, but the morons had left them running, i couldn't remove any of them so it looked like that had just disabled my cron manager but my actual crons were still running.
  20. Re: Hello can some one please help unless root is your DB username then u will need to change mysql.php to match your DB login details
  21. Re: crystal problem this along with auto refreshers are becoming painfully irritating problems I have been speaking with a feww others and one suggestion that cam up for the auto refresher is to use the tresde command as for the two computer problem you could make login sessions
  22. I know that fists are used if someone attacks a user who doesn't have a weapon, what i want to do is setup my attack script so that if for example i was to go and attack someone when i didn't have a weapon, i could choose to use my fists, I know it would be pretty pointless but it's all a part of something else im working on, if anyone has any idea on this could please msg me either on here or MSN thanks in advance
  23. Re: Not Working or even better you could post the problem and the fix so that if anyone else has that problem they will know how to remedy the problem
  24. Re: staff applications there seemed to be some incorrect bits in there so here it is cleaned up again   <?php session_start(); require "global_func.php"; if($_SESSION['loggedin']==0) { header("Location: login.php");exit; } $userid=$_SESSION['userid']; require "header.php"; $h = new headers; $h->startheaders(); include "mysql.php"; global $c; $is=mysql_query("SELECT u.*,us.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid WHERE u.userid=$userid",$c) or die(mysql_error()); $ir=mysql_fetch_array($is); check_level(); $fm=money_formatter($ir['money']); $cm=money_formatter($ir['crystals'],''); $lv=date('F j, Y, g:i a',$ir['laston']); $h->userdata($ir,$lv,$fm,$cm); $h->menuarea(); if($_POST['app']) { mysql_query("INSERT INTO staffapps VALUES('',$userid,'{$_POST['pos']}','{$_POST['app']}')", $c) or die("Your staff application could not be processed. Make sure you have filled out the form completely"); print "Staff application processed. You will receive a mail in less than 3 days with our decision. Good luck"; } else print "<h3>Staff Application</h3> <form action='staffapps.php' method='post'> Position <select name='pos'><option value='3'>Admin</option><option value='5'>Secretary</option><option value='6'>Assistant</option></select></br> Why do you deserve the position? <textarea rows='7' cols='40' name='app'>$_GET'app'</textarea> <input type='submit' value='Submit Application' /></form>"; $h->endpage; ?>
  25. Re: Help plz u need to edit mysql.php to connect to your games database, or in ur case config.php as your using V2
×
×
  • Create New...