Jump to content
MakeWebGames

seanybob

Members
  • Posts

    666
  • Joined

  • Last visited

Everything posted by seanybob

  1. seanybob

    the onion

    not sure how many people know about this... but its a hilarious site theonion.com here's an example article http://www.theonion.com/content/infogra ... a_released
  2. Re: I need a bit of help!!! ALL OWNERS AND CODERS!!! I don't have a radio station, but I have a decent myspace fanbase - I'll spread his account around, expect many friend requests... that's about all I can do ;)
  3. Re: Dedicated Hosting its not the bandwith so much as the cpu requirements...
  4. Re: Dedicated Hosting since it's more or less related... for all those with dedicated servers out there, where do you go?
  5. Re: Random Error - Not Sure What Is Wrong back in the day, this happened to me twice. Off the top of my head I can't remember how I fixed it, I think I cleared all the events or something like that... but ya, it happened to me too, and at the most random times
  6. Re: Lite vs Version 2   What I actually did was code my game from LITE, then bought v1 for a couple of the mods on there I didn't want to code myself (like gangs) There are advantages to both options though...
  7. http://en.wikipedia.org/wiki/President_ ... ted_States Not sure how long this will be up... but it looks like someone editted this page. I'll take a quick screenie of it just in case it gets fixed before ya see it
  8. Re: Windows Xp - customizing the start button screenie ;)
  9. Re: Jail.php *prays that regan understood that that was psuedocode and didn't copy/paste it into his game*
  10. Re: [email protected] -- anyone know?   +1 and I'm also curious if the advanced search mod and jail/hosp were yours? or someone elses? sry to be a buggert and ask, but nowadays I'm curious ;)
  11. Re: Jail.php if(youareinjail) {die("You are in jail, and you smelly like toast");}   msql(set jailtime 1 less than what it was before);
  12. Re: PLEASE HELP SOMEONE!!! in response to the private msg you sent me regarding this... you have to enter cpanel (or whatever your host gives you) to create a mysql data table, and a user/pass Then you put those there
  13. Re: How do You Code Php Tables   I don't even bother removing the " within the table html coding, instead of doing print" "; just do echo <<<EOF EOF; and you can leave it ;)
  14. Re: General PHP table Question   Google is your friend.. :P amen
  15. Re: A question to sort out all the arguments over coding copyright..... its an honor code among coders. You know when you changed enough. If you are uncertain, you haven't changed enough yet I'd be a moron to put a percentage on this lol
  16. Re: A question to sort out all the arguments over coding copyright..... its all subjective there is no line
  17. Re: Cheap Hosting   +1
  18. Re: User "sifter" cron   hehe not quite
  19. Re: jail/hosp shoutbox you may have to chmod the txt file to 777 do you know how to do that? If you have cuteftp, just right click the file, click chmod, and change to 777
  20. Re: hack pc and crystal slots error the hackpc error is because of the switchover of these forums from phbb to smf... some characters got reverted to their ascii values...
  21. Re: item images If i remember correctly... once you add that variable to the items table, if you want to be able to create/delete/edit items on the admin panel, wherever you have it insert an item into the table in the admin panel, add an extra '' on the query for example, in my edit items function, this query is present mysql_query("INSERT INTO `items` ( `itmid` , `itmtype` , `itmname` , `itmdesc` , `itmbuyprice` , `itmsellprice` , `itmbuyable` , `itmpic` ) VALUES ('{$_POST['itmid']}', '{$_POST['itmtype']}', '$itmname', '$itmdesc', '{$_POST['itmbuyprice']}', '{$_POST['itmsellprice']}', '$itmbuy')", $c); you would have to change that to mysql_query("INSERT INTO `items` ( `itmid` , `itmtype` , `itmname` , `itmdesc` , `itmbuyprice` , `itmsellprice` , `itmbuyable` , `itmpic` ) VALUES ('{$_POST['itmid']}', '{$_POST['itmtype']}', '$itmname', '$itmdesc', '{$_POST['itmbuyprice']}', '{$_POST['itmsellprice']}', '$itmbuy', '')", $c);
  22. Re: jail/hosp shoutbox eh, i took it as implied as "nothing against seanybob, but what stops other users from advertising their game" or something like that...
  23. Re: jail/hosp shoutbox   You... are hilarious ;P if you want to stop them from adverting other games, just set up an eregi statement, or a search string or something that looks for www, com, net, etc...if it finds it, it sends ID 1 an event with the full text the user was trying, along with their ID number, if it doesnt, it posts it... I'm not gonna do all your work for ya m8 :) admin function to clear it? Aye caramba... you can either open up the text file and delete it, or run the cron manually (as boggl said), or make your own admin function :P
×
×
  • Create New...