-
Posts
2,667 -
Joined
-
Last visited
-
Days Won
75
Content Type
Profiles
Forums
Events
Everything posted by Uridium
-
I dont have a Licence ? and i make free mods for everyone dont hear anyone complaining when my mods roll off production.. Give the lad a chance he may even have a licence or intend on getting one :)
-
William everything you need to learn about mccodes scripts has already been done for you in the game just pick out a file and read through it and see how which Function does what and how another files links to it for more info :)
-
You may need to add a piece to cron_day.php to refill users turns each day mysql_query("UPDATE users SET guess = 10 WHERE guess < 1 OR guess = 0");
-
Not mocking your script Devonbnice by any means as its free and an excellent addition :)
-
You could change from mysql_query("UPDATE users SET hospital = $time WHERE userid=$userid"); mysql_query("UPDATE users SET hospreason = 'Severe burns' WHERE userid=$userid"); mysql_query("UPDATE users SET bomb = 0 WHERE userid=$userid"); to mysql_query("UPDATE users SET hospital = $time, hospreason = 'Severe burns', bomb = 0 WHERE userid=$userid"); save some space :)
-
Sorry you will have to excuse me as i didnt read the whole page fully then noticed after i posted that, that it was meant for an addition into the explore.php sorry about that..
-
I regd about 20 mins ago still waiting for validation email :) Username is illusions if staff can activate me. :)
-
Nice mod but just one Query why is if ( $ir['bomb'] < 1 ) { print " What are you doing? "; print " <hr>> Back<hr>"; exit; Pointing to Zero when your add to database is also 0 wouldnt this continously give the above message as it cant insert or add to database to make it 1 so making it if ( $ir['bomb'] == 1 ) should cure that problem..
-
K1ngscorp1o what they are trying to say is we know from experience that using. $ip = ($_SERVER['HTTP_X_FORWARDED_FOR']) ? $_SERVER['HTTP_X_FORWARDED_FOR'] : $_SERVER['REMOTE_ADDR']; on a mcc script caused users games to be hacked via a Firefox plugin. So for their peace of mind what makes the use of the above safer in your scripts than in anyone elses And im not having a go at your script abilities id just like to understand your reasoning for the above...
-
Damn hope no-one asks me to post my old scripts id be here for years oops lol
-
didnt anyone notice this error :) change $hard = mt_rand(0,3); // 1:3 chance of hard outcome, change this for each differnt ore to $hard = mt_rand(1,3); // 1:3 chance of hard outcome, change this for each differnt ore As 0 will display a blank message
-
[MCCODES V2] Fully Customise your game layout
Uridium replied to Uridium's topic in Free Modifications
damn feb 2009 when i wrote this even i cant remember half of it lol -
[MCCODES V2] Fully Customise your game layout
Uridium replied to Uridium's topic in Free Modifications
ddnate which page are you getting this from is it from the installer ? -
Nicely done :)
-
heres a few: 1 = Christmas cracker as an Item pull with someone on your friendslist to get cash or an item 2 = Santas stocking users put one of their own items into the stocking each day on 25th stocking selects one winner who gets all items from it. 3 = Throw a mince pie at the users in jail..
-
He was a fine actor for those that ever saw Airplane or the naked Gun films will be sadley missed theres not many people that have his wit
-
iz ya dissing me whiting pappa smurf ;) oops lol
-
When i had my test site the site itself was in a folder called games id been working on it for months making new mods. then had a brain dead moment and sent a folder from pc to ftp called games without thinking it said are you sure so me being half dead said Yep go ahead turns out the Games inside the folder were zx spectrum games and not the files i wanted to upload. so yep lost everything.
-
this is for those who have many styles of style sheets in their game... Themes are always nice to have but if the CSS was large in style.css and you wanted to make more then usually youd need to add more CSS files with nearly the same data as style.css so heres a way to cheat.. always have style.css as your main stylesheet.. and to add more simple do this create a new css and add @import "style.css" ; body { background: #d6d8cb url(images/Halloween3.jpg) repeat top center fixed; } A:link {text-decoration: none; color: #000000; font-size: 28;} A:visited {text-decoration: none; color: #000000; font-size: 28;} A:active {text-decoration: none; color: #000000; font-size: 28;} A:hover {text-decoration: underline; color: #bdebde; font-size: 28;} The @import will auto select style.css as its main source but you can now add new elements to the newly created css whilst still keepig data from the style.css
-
Dibuk just make the Image change colour if they have a new email no need for text then
-
By this i mean if there is a Problem on any pages it can be closed from admin panel instead of having to edit files send back to FTP then edit files again and resend when page has been fixed... A simple dbase with with page names and switches could do this.... Granted each file would also need the IF statement...... but get it donw now whilst its still new then when we add pages it wont be as much of a hassle later...
-
in your users table create a new field called character. This then gets complicated cos you will need people at signup to be classed as vampire or Werewolf when they join.. Then in your school table add visibleto as a varchar so it knows wether its a vampire or werewolf that will be taking the course..
-
Taking the structure of v2 id like to see these implemented into the v3 version... 1 = Account Logs. An updated system that will Log everything a user does in the game from buying selling training ip conflicts 2 = An easy to use version that can be adapted for mobile phone use at the click of a button. 3 = A better system as to not keep showing DIE pages 4 = An updated system that from the admin page a new Mod can be added easily and set up once script it uploaded... 5 = Pages that can be controled from admin panel to be closed or opened when needed...
-
Loads of helpful advice here but the one thing everyone here forgot to mention is How to hack it in the first place.. before you learn security you need to understand how it got hacked in the first place so my suggestion would be learn to hack and find vulnerabilities in your script then you can understand how to fix them..
-
This small mod will allow your users to view your online Facebook and Twitter entries open announcements.php and add this near bottom before the closing php tag. echo "<table style=\"margin: 0 auto 0 auto; padding: 5px; align:center;\"><tr><td><script src=\"http://widgets.twimg.com/j/2/widget.js\"></script> <script> new TWTR.Widget({ version: 2, type: 'profile', rpp: 23, interval: 6000, width: '250', height: 198, theme: { shell: { background: '#333333', color: '#ffffff' }, tweets: { background: '#000000', color: '#ffffff', links: '#4aed05' } }, features: { scrollbar: true, loop: false, live: true, hashtags: true, timestamp: true, avatars: false, behavior: 'all' } }).render().setUser('TWITTER GROUP NAME').start(); </script></td><td><iframe src=\"http://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fpages%2FGROUPNAME%2FGROUPID%3Fv%3Dwall%26ref%3Dts&width=250&connections=15&stream=false&header=true&height=287\" scrolling=\"no\" frameborder=\"0\" style=\"border:none; overflow:hidden; width:250px; height:287px;\" allowTransparency=\"true\"></iframe></td></tr></table>"; KEY: TWITTER GROUP NAME@ is your twitter groups name pn the facebook entry change GROUPNAME to match your FACEBOOK GROUPNAME and GROUPID to match the GROUPS ID and thats it..