-
Posts
2,701 -
Joined
-
Last visited
-
Days Won
88
Content Type
Profiles
Forums
Events
Everything posted by Uridium
-
cant remember how the inv works but this should work <div id="weapon_spot"></div> <div id="helmet_spot"></div> <div id="inventory"> <--- need this in text not image. </div> dot quote me on the use of $itm it could be something else on your script..
-
Redux as a new word dont really give it justice... Redux may refer to: Redux (literary term), a term used in literature and film Redux (The X-Files), a two-part episode of The X-Files Apocalypse Now Redux, an extended version of the epic war film Apocalypse Now Redux (adhesive), an aircraft adhesive Redux (album), an album by Adam Ant Redux (EP), an EP by the band Amebix Redux (drug) (dexfenfluramine hydrochloride), a weight loss drug withdrawn in 1997 DD68 Redux (stock-class paintball marker) I say we have a comp for the new naming
-
I have to say ive never had any complaints regards Haunteds works and he puts him self out of his way to help others especially with most of my mods for mcc which he lent a great deal of help too. So regards this post i think its between you two and not the whole of MWG to see.
-
Thanks for joining the site Danny your experience with mcc isnt needed its your brains we are after lol
-
If you cant see errors on your script as Alain pointed out your php.ini isnt set up to show them however if you dont have access to php.ini then you can try one of these from http://php.net/manual/en/function.error-reporting.php <?php // Turn off all error reporting error_reporting(0); // Report simple running errors error_reporting(E_ERROR | E_WARNING | E_PARSE); // Reporting E_NOTICE can be good too (to report uninitialized // variables or catch variable name misspellings ...) error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE); // Report all errors except E_NOTICE // This is the default value set in php.ini error_reporting(E_ALL ^ E_NOTICE); // Report all PHP errors (see changelog) error_reporting(E_ALL); // Report all PHP errors error_reporting(-1); // Same as error_reporting(E_ALL); ini_set('error_reporting', E_ALL); ?> Just place one from the above list and place in your file just after <?PHP
-
Line 20 >> print "<center>Welcome "$username change to print "<center>Welcome $username</center>"; see if that helps Also line 36 >>> print "<center>Welcome "$username" to ".$games[$_GET['action']]['name']."</center> "; change to print "<center>Welcome $username to ".$games[$_GET['action']]['name']."</center> ";
-
Every script ive done on here has been trial and error we learn from this (well i dont cos i still have to do it) but some people pick it up quite fast :)
-
Nice to see some decent staff choices being made :)
-
I wish people would read full posts before jumping the gun. If this is going to get MWG back on track im all for it so quit your moaning or i'll have to set cecil the hamster loose :)
-
******************************************************** **** NO LONGER FOR SALE OR TAKING ORDERS FOR THIS MOD **** ******************************************************** This schooling Mod will allow the Owner to Create as many Courses as they wish and add Modules to each course. ADMIN SIDE Staff can set up percentage gains for each course so easy courses can be done faster than harder courses Modules can be added to Any Course. Retake ability on some courses can be set to retake or just view ones that cannot be retaken Link in Explore.php will open up Courses passed for the given reward of that course. Or No link appears and user is updates instantly without a link.. LINKS: when a link is used in explore.php this means that the user can use it once per day each day Brave is used for each course turn.. 3 Courses can be taken at any one time. What ever mod you add to your game you could add a schooling course to secure its completion.. Paypal = NO LONGER FOR SALE Zipped folder will not be sent until paypal has Authorised Full Payment... I will need the site you will be hosting this mod on and an email to which i can send the zipped files...
-
How about a lottery mod that can be set to run at any time hourly daily or weekly that doesnt need a Cron :)
-
<< COMMENT REMOVED >> And appologise to both Robert and Alex... The script above is true to form and does work correctly My misadventure was i was testing on myelf and couldnt see any outcomes from it.. When the script itself updates users other than yourself... So again apologise to both...
-
Farts Burps and Coughs Well I have to say im Shocked stunned and need to fart ;) Cheers guys for this.. Yes ive read them since yesterday and really didnt know what to put to thank you all.. I hope my mods regardless of their uses has brought you some fun or even some piece of mind knowing that not all Paid mods cant be free.. Iv'e probably pissed off a lot of people making my mods free and being able to make them unique.. But a few years ago I was at the brunt of a rip off from a paid mod and i got stung so to thank them i made their lives hell so they couldnt piss me off again :)
-
I personally dont sell many mods but id be glad too have any of my Paid mods reviewed before being able to post on the Paid Mods Section. If a coder is worthy of their script they shouldnt feel threatened by someone reviewing it cos to me that would mean positive feedback from the reviewer and granted if they say its crap only you know and cant post your mod on the Paid Mods section..
-
I agree with what ever he said above ;) And kieran I think your Indents look nice i can see every { and } very clearly without having to rummage through to spot them nicely done. have a look at the attachment you'll see what i mean :)
-
You can create a nice looking banner using images from your pc here also has some nice fonts or you can sue your own... The site has many other features as well as making banners.. http://www.grsites.com
-
tum ti tum
-
well and trult fixed nice to be able to post with without repeating :)
-
try this link it should work Dayos Site with MCC Mods
-
Is this a trick question :) even for those who have cpanel you can use te file manager to locate the sqls files in the folder you created
-
Its not WBB thats at fault ive seen mentions of the same error on forums that only have only a handful of people
-
I kinda forgot about this script oops :)
-
ive been tinkering with the script and its possible for the script to just pull 1 table from the database and put that to the folder instead of the whole lot..
-
It will run on all Server sometimes getting the $backupbaselocation = "/home/xxxxxx/public_html/sqlbackups"; location correct can be a pain as some use different methods but on mine its as ive shown... some have example >> $backupbaselocation = "usr/www/home/xxxxxx/public_html/sqlbackups"; so edit this if it fails
-
This small mod will allow you to backup your SQLS to a folder on your FTP create a new folder on your FTP called sqlbackups Or what ever you want to name the folder but remember to edit the name on the following piece folder needs to be CHMODDED to 755 and make sure you place a index.php or index.html file into your newly created folder... $mysql_host = "localhost"; $mysql_user = "username"; $mysql_pass = " -p\"password\""; // LEAVE the Final \ where it is this is incase your password uses amps or @'s $mysql_db = "databasename"; $backupbaselocation = "/home/xxxxxx/public_html/sqlbackups"; // change the xxxxxx to your ftp username if you changed the folder name as above then change this to match $backuplocation = $backupbaselocation . "/" . date("d-m-Y"); mkdir($backuplocation, 0777); system("mysqldump --user=$mysql_user --password=$mysql_pass $mysql_db > $backuplocation/database.sql"); now copy and paste the whole part before the ?> on your cron_day And your done your SQLS will be backed up each day