
Matty
Members-
Posts
168 -
Joined
-
Last visited
Never
Matty's Achievements
Newbie (1/14)
0
Reputation
-
Re: [V2][MCCODES]Updated Help tutorial Has no one heard of search and replace? Still the thought was there... :wink:
-
Re: Counting (nr game) We were saving the excitement for you. 1552
-
Re: Counting (nr game) 1550!
-
Re: Wich OS do you prefer? Agreed. But there more to it than that. Most of the popular games do have Linux installers around the net. If not then they can be emulated to run on Linux. Games will run better on Linux because Linux is less resource hogging than windows, hence why it can run on outdated machines compared to windows. The main reason is because there isn't a market for it there is hardly any drivers available, there is lack of directx 10 support and pretty much all graphic cards. Microsoft know this and this is why with the first Xbox they created was a stripped down Windows 2000 dashboard running on the Linux cromwell bios. The Xbox 360 is much the same, I also believe this is why Windows Vista is going more into the Windows gaming side of things.
-
Re: [v1]Refill Users A crons mod?!
-
Re: Mc Code V2 Problems. Help required. http://us3.php.net/manual/en/function.isset.php
-
Re: Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE............. I'm assuming it would be something like this... <TR> <TD><h5><center>[b]<font color=333333>|</font> <font color=white>Name:</font> [url=""]<font color=orange>{$u}</font>[/url] <font color=333333>|</font> <font color=white>ID:</font> <font color=grey>{$ir['userid']}</font> <font color=333333>|</font> <font color=white>Rank:</font> [url='criminal.php']<font color=99CCFF>{$ir['level']}</font>[/url] <font color=333333>|</font>"; if($ir['hp'] < 50) { echo '<font color=red>'.$hpperc.'%</font>'; } elseif ($ir['hp'] > 50) { echo '<font color=green>'.$hpperc.'%</font>'; } echo " <font color=white>Cash:</font> [url='bank.php']<font color=FFCC33>{$fm}</font>[/url] <font color=333333>|</font> <font color=white>Crystals:</font> <font color=gray>{$ir['crystals']}</font> <font color=333333>|</font> <font color=white>Loc:</font> [url='monorail.php']<font color=0099CC>Coming Soon!</font>[/url] <font color=333333>|</font> <a href='criminal.php'>{$experc}% <img src=bargreen.gif width=$experc height=10><img src=barred.gif width=$exopp height=10></a> <font color=333333>|</font> [url=""]<font color=0066CC>Logout</font>[/url] <font color=333333>|</font>[/b]</center></h5> </TD> </TR> </TABLE>
-
Re: Is There Anyway I Can Change The Levels From 1 2 3.. To Like Scumbag, Civili THats what i suggested at first, exactly that except for it was print "Scum"; not echo "Scum"; lol I know... I just stated that the second example you gave was incorrect. lol ;) LOL I like this one... Its now You shouldnt be learning HTML is way out of date, you should be learning XHTML and CSS... Get with the future, you will need to if you want to get anywhere. Also HTML files can end in more than just *.HTML... Frontpage defualts to *.htm. You can have *.shtml, *.xhtml as defualts aswell... Then depending what your server is configured to you can have it as any extension you want, so longs as its not in use!
-
Re: Is There Anyway I Can Change The Levels From 1 2 3.. To Like Scumbag, Civili ? Whats the point in that? Your still not going to display anything... so then you still have to add (echo 'Rank :'.$ir[rank].'.';) in there... The query is pointless and a waste of resources =/ if ($ir['level'] == 1) { echo "Scum"; } Does the same, no mysql!
-
Re: Is There Anyway I Can Change The Levels From 1 2 3.. To Like Scumbag, Civili No, That still wont work... /// If user level is one then... if ($ir['level'] == 1) { ///$ir['rank'] varible equals scum $ir['rank'] == Scum } It doesnt output anything... nor does it select or add anything to a table...
-
Re: RITE!!, Everyone's Wish Has Been Granted!!! I agree. Its fair enough getting it up, but then you have to maintain and run it. You have to fix errors, you have to keep it secure, you have to sort player problems, you have to make sure donations are sorted and always crediting. Players that pay expect a good service. If you cant code then you cant offer that service and your game wont last long. Much like running a bike shop yet knowing nothing about bikes... Learn and you will find it eaisier. You can learn and build at the same time, it may take 3 months or so untill you know a bit, but it will be better in the long run. Edit - There is an edit button, use it dont double/triple post like you have been.
-
Re: Need A Lil Bit Of Help On hackpc.php Mod This Guy Needs To Stop Coding And Start Learning No Joke i agree You cant say much really - Which was wrong... If you look at the start of the code : /// Get the ID from the URL make it $in $in = abs((int) $_GET['ID']); (Should really be $_REQUEST['ID']) /// If $in is empty then display this error... If not then carry on. if(!$in) { print "Error - no valid player ID to hack specified."; $h->endpage(); exit; }