Jump to content
MakeWebGames

Konsigliare

Members
  • Posts

    40
  • Joined

  • Last visited

Everything posted by Konsigliare

  1. I'm also on BT, they are shite
  2. I'm selling copies of a mod I made, 'Mobster of the hour'. It is fairly lightweight, requires 1 file edit, 1 hourly cron and a bit of common sense to upload a few files and run 2 queries in a database! What does this mod do? It records attacks won by each user, at the end of each hour, awards the user with the most attacks won with 50 points (easily changed) It then wipes the logs and starts again for the next hour. Price: $10 via PayPal You will recieve: 1 Readme file, 2 php scripts (one for displaying winners and a cron file), 1 file telling you what to edit (only one edit), 1 file containing table structures required Contact me via msn on: [email protected] Have fun :) You can see a live demo on my game at http://chavwars.com
  3. Looks alot like grpg to me but I'm not sure, It's very different in some ways but identical in others.. I'd say nice layout and design and stuff but links and stuff are too cluttered and too long eg 'Things to do in Noob City', links in the nav menu should really only be 1 line maximum 7/10?
  4. We at chavwars.com have moved out of BETA earlier today (4pm gtm) and are now live. We now need active players to make the work worthwhile and to take hosting costs off us! Link: ChavWars Desciption: The game centers greatly around 'chav' culture, and a fictional character 'Devo', inspired by the 'catching up with devvo' series (youtube). There are also some references to other characters, fictional and non fictional. As per usual, 'Chavs' level up, train, do crimes, and so on, and can buy 'magic' stones to make Devo be their Mate, becoming Devo's Mate, gaining many benefits such as being able to choose the color of their name, higher bank interest, higher refills at updates. We have a unique character levelling system, when the Chav goes up a level, they mysteriously gain a spliff which is used to advance their attributes (energy, nerve or toughness) used to train, commit crimes, and fight others. Release date: Today - 1st May Misc: No demo accounts, easy registration Post reviews / comments please, and also have a play!
  5. That's what it is, thanks for posting.
  6. Basically there's a sneaky line in control.php that deletes players after being offline for a set amount of time. I've deleted mine and can't remember what line or what how often it deletes, but it is near the top of control.php Took me several weeks before I realised why they disappeared :(
  7. Parse error: syntax error, unexpected T_VARIABLE in /home/admin/domains/chavwars.com/public_html/roam.php on line 10 Can't even be bothered fixing it because it is compressed into about 12 lines...
  8. Upon opening login.php you will notice a line: $newip = $_SERVER['REMOTE_ADDR']; mysql_query("UPDATE grgpusers SET ip=".$newip." WHERE password=".$password.""); This updates the users IP address to the one used to login, however, if for example their password is 'qwerty' or something similar and surprisingly common, this will set the ip to the users ip on all accounts with the password 'qwerty'. A simple fix is to change it to: mysql_query("UPDATE `grgpusers` SET `ip` = '".$newip."' WHERE `id` = '".$worked['id']."' ");   The $worked array, or whatever it is, is already declared a few lines above that and identifies the user by the username they entered. I'm not sure how much sense that all makes sense, but I'm very tierd so yeah
  9. As far as I know, phpbb doesn't use password encryption, so it's easier. Also, I done it, with bugs of course in a few minutes - I was qutie nub when I done it too, easy
  10. <<closed>> Now just selling various custom pieces for thegrpg script Contact [email protected]
  11. In your opinion. Unless you are sun-fearing, you wouldn't be proud of a programming language. I have no idea what your last line means. All I'm posting is a few lines of code to paste into a file, that means you can forget about your file extensions. In my opinion and alot of others, it makes the website look more professional and more interesting
  12. Doubt it, if it can achieve the same result as the little bit of code I posted, do explain
  13. Does not enhance security in any way! I just find it makes your site look more professional! This will allow you to use links such as rather than All it requires is you to open .htaccess on your public_html folder, via cPanel or FTP Once opened paste: RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME}\.php -f RewriteRule ^(.*)$ $1.php   You do not rename any files at all. Any subdirectories you have will also be able to be accessed without .php You can change the .php in the code to whatever your main file extension is This code is not for mccode it works with any .php file, whether it is kiddy porn or mccode If you have dynamic urls (http://game.net/login.php?mode=gay) simply use http://game.net/login?mode=gay) Simple as!
×
×
  • Create New...