Jump to content
MakeWebGames

hamster01

Members
  • Posts

    1,108
  • Joined

  • Last visited

    Never

Everything posted by hamster01

  1. Re: File size of Remote image? I did some googling and found this, It should work perfect, because I don't know if you noticed but images gives out headers with their size and dimensions. http://www.phpcentral.com/207-get-files ... -file.html
  2. Which one is the best for you? Here is a couple of my reasons for each of them. FaceBook Upside Very Professional Easy to find someone. Friends isn't the main part. Ability to have Applications The Groups is very neat. Downside Your profile gets to big if you have many apps. Cannot customize profile in different styles. CSS(XSS) bug that gets me annoyed. Hard to find what you are looking for. After long weekend of not being on facebook, you have a million things to check(check here).   MySpace Upside You can customize your profile. Very easy to meat new people. Control center. Chat Rooms and Forums. Easy to edit. Downside Ads, lots of it. Friends equals power, you have none and your screwed. So many bots that people uses. Profile editor doesn't always work. Very often the system will be slow or get bugs.   So what do you think?
  3. Re: throw an object at the top poster Throws a bottle of narcotics.
  4. Re: If you could be me for a day I would buy a llama, I really don't know why my tribal people doesn't like them
  5. hamster01

    I can to..

    Something I just hate about some of these people. Yes, I admit, I said it to, but it is annoying as hell. I can quote many posts where someone actually took the time to do something, and then someone comes along and says they can also do it and/or do it better. Well, for those people, here is some advice. Don't go out and say that, do something about it. 1. Make your own version, do not copy it, or else you are stealing their idea. 2. Show your own version, let others begin to judge you. After you have done those things, then you can let others decide if you can actually do it better. Like many times I think this to, I can do it better, I would either make my own version, or just keep my mouth SHUT.
  6. Re: [mccode] View Donators     <?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(); $h->userdata($ir, $lv, $fm, $cm); $h->menuarea(); $Query = mysql_query("SELECT username, level, money, donatordays, laston FROM users", $c); echo '<table stlye="border-width:1px;border-color:black;border-stlye:solid"><tr><th>Username</th><th>Level</th><th>Money</th><th>Donator Days</th><th>Status</th></tr>'; while ($Row = mysql_fetch_array($Query)) { if ($Row['laston'] >= time() - 3600) $Line = 'Off'; else $Line = 'On'; echo '<tr><td>' . html_entity_decode($Row['username']) . '</td><td>' . $Row['level'] . '</td><td>' . money_format($Row['money']) . '</td><td>' . $Row['donatordays'] . '</td><td>' . $Line . 'line</td></tr>'; } echo '<table>'; $h->endpage(); ?>
  7. Re: MySql Query Error Text can't have a default value, it is not like int or varchar. Try altering the mysql query that inserts the user upon registration. , 'No Information On File',   That should work because you are inserting data with the other info.
  8. Re: Guess the next poster   HAMSTER!!@ tearsofahairyllama next. :)
  9. Exactly.. Well.., not exactly.., some people will still get it wrong. If you could be the above poster for one day, what would you do?
  10. Re: Guess the next poster llama?
  11. Re: [free] AJAX Notepad Did you add the row in the users table to hold the data? If not, input this: ALTER TABLE users ADD notepad TEXT NOT NULL;
  12. Re: What Cell Phone Do You Have? I can't be bothered with these things anymore.. Nokia 1600 Before that I had.. Samsung D820
  13. Re: idea for mod   My pleasure. :)
  14. Re: v3 game engine   1. Yet, they will show you the copyright license of a book/document? 2. Why my website, I don't like to be linked in search engines for content that is not mine.
  15. Re: v3 game engine Because I have searched the governments copyright licences for it. Feel free to look for yourself, www.copyright.gov
  16. Re: v3 game engine Then people won't moan and bitch about things like this. How many times have you heard someone say; "your illegal", and it goes on and on.. And it "Is not illegal to resell something if it does not have an copyright license".
  17. Re: log in error You have a mysql connection error. That means that the mysql server is rejecting your connection with the current username and password combination. This this solution; Find the script called "mysql.php", open it with any Hex Editor. You will see the line somehting similar to this: $c = mysql_connect("localhost","root","something"); You should contact your hosting profider for those details. Also ask your hosting provider for the mysql database you are using.
  18. Re: v3 game engine   I'd be glad if dabomstew takes a few Dollars and buys himself a copyright, or asks his parents.
  19. Re: idea for mod ARG.. *stabs UCC*   Pessamisties is ons? Minion..   <?php $Results = array(); $number = rand(0,100); if ($Number =< 20) $Results = 'You party went well..,.until the end. There was too much booze at your party, you friends trashed your house and caused major damage. you have to pay out \$' . $Amount . ' to repair the damage.'; $Hospital = false; $Do = false; else if ($Number => 20 && $Number =< 35 ) $Results = 'Your best friend bought you a fast car for your birthday but there was some technical difficulties with it and you crashed into your next door neighbors house causing severe damage. You have to pay \$' . $Amount . '.The crash left you with fractured ribs and a broken leg.'; $Hospital = true; $Do = false; else $Results = 'The party was a great success. Everyone had a great time and they enjoyed the music. You received lots of presents. Unfortunately none were to your taste so you took them back. You were refunded \$' . $Amount ; $Hospital = false; $Do = true; if ($Hospital == true) mysql_query("UPDATE users SET hospital += SUM(max_hp/20) WHERE userid='$userid'",$c); if ($Do == true) mysql_query("UPDATE users SET money += SUM(level+(money/(".$Number."/15)) WHERE userid='$userid'",$c); else mysql_query("UPDATE users SET money -= SUM(level+(money/(".$Number."/15)) WHERE userid='$userid'",$c); echo $Results[0]; ?>
  20. Re: Please..?   1. Well you can easily see it using an application like that, but when you try to get other misc. info about the website the link is broken. Some old websites still has uses old techniques, it's like playing one of those very old dos games. :) 2. I forgot the link. :P
  21. Re: v3 game engine Well, I'll have to read paypal's TOS again, but If I remember, you can report the seller within a period of 5 weeks after the purchase. All the sellers of modifications, they will have to pay the full amount back(that or get sued).
  22. Re: Please..? Yes I know web archives(.com). But it's not how it currently is. Like take this one for example: http://www.fbi.gov/2hawt4u.cfm 1996. :) Edit: I changed the link.. mwhaha.. Reason: It's supposed to stay old.., the counter aswell. >:(
  23. hamster01

    Please..?

    Some people collect stamps, other shells.. But me, I'm deferent.., I collect old webpages/sites. If anyone see a old website/page, that's older than 10 years, please send me the link. :)
  24. Re: [mccode] Close page system This is such a long and complicated way to do this. Here is a way I would do it(even with instructions). Find: global $ir,$c; print "</td><td valign='top'> ";   Apply underneath: $Locks = array("page.php","another.hpp","wow.php","2hawt4u.php"); if (in_array($_SERER['PHP_SELF'], $Locks)) echo 'This page has been closed by the administration.'; exit;   Done with one line :).
  25. Re: Wich OS do you prefer? The popular ones, yes. But when I got into VB for the first time, and also began C++(never get it right), There was actually more developers that programmed for linux/unix. I actually spoke to one of the developers that made an stragedy game like AOE, he actually prefers to write linux based games, although not major ones, he also writes programs just for linux. The reason why there aren't many popular games for linux; there just simply isn't a market for it. I know that you know why that is.. But there are archives with thousands, if not millions of scripts for linux games/programs. So give linux a few years, then lets see about it. Overall, not just speaking of popular games, there are more games for linux than windows.
×
×
  • Create New...