-
Posts
2,657 -
Joined
-
Last visited
-
Days Won
74
Content Type
Profiles
Forums
Events
Everything posted by Uridium
-
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
-
Valid Point The Logs come with an Expiry Date and can be deleted on a date set by the Admin All logs can either be truncated at the same time of if you wish to keeps logs longer you can truncate individual logs on different dates so you can keep ones most needed and get rid of all or some of the ones you dont need. Failing this you can create and send your whole SQL to a defined folder on your FTP and have it update whenever you want it to.. Incase you need to revert back to it later (Remember however Data deleted before the SQL has been sent to FTP will be lost)
-
Few things i can see wrong on your script so im going to try help you out a bit but im not going to recode it for you.. As Savage mentioned a user could visit the page more than once as your script is now there isnt a way to stop this from happening without upsetting users at level.. example if you told the script to let if($ir['level'] ==5) then created a STOP function so once they have viewed and gained their Merit it wouldnt allow them to get another merit for level 5 this would then make it so users after that who get to level 10 would'nt be able to gain a merit due to level 5 stopping them. Same applies for the rest of the script you need to make it so it knows which merit to give then you can stop that merit if its been rewarded then the script moves onto the level 10 merit..
-
This mod will allow you to Setup Logs for anything in your game example Bank, attacking, staff, training, courses taken, course results searching areas (if added) in fact just about anything you want to make a log for in the pack it includes... 1 SQL TABLE 1 FILE 1 readme file Very Easy to Install and to Edit files needed for it to work.... Few screenies Drop Down Selection training Logs excuse my spelling on the image fat fingers at time Bank Logs This mod costs $20 and any future updates to this mod will be given free Paypal Addy [email protected] FOOTNOTE* When sending payment could you also include Your sites URL of where the Mod will be used and also An Email Address as to where i can send the Zipped Mod.... SOLD OUT
-
You could always complain to their hosting company and tell em from me they are Crap oops lol ;) http://www.atomicwebhosting.com/
-
Send me a copy to make mods with ? I aint paying for a licence to a game engine im never going to use publicly unless you count creating mods public :)
-
Nicely done Kieran :)
-
I cant comment on the Demo as it just uses 2 slots but im sure with a bit of editing you could make your version require 4 slots
-
I came across a script last night quite accidentaly and thought it would make for a decent mod.. How to install The SQLS Sqls Needed Working Demo DEMO I havent attempted to add this mod to a MCC working game but im sure those of you who want it to work will make it do so... Credit goes to Danny Van Kooten
-
After the current situation with the Burning Board Dowtime I feel its about time We the Public put it to a Vote as to the future of the Current situation..
-
This is a Mod that creates a Mod it isnt a running Mod its one that will allow you to setup Features on your game using the Script ive written for you. There after its up to you to continue the script on your own for it to work on your site....
-
I Totally agree with rulerofzu on this one
-
Your SQL bts at top of page are wrong matey... ft_like int(11) defult 0 AND ft_dislike int(11) defult 0 should be [mysql]ALTER TABLE `forum_topics` ADD `ft_like` INT (11) DEFAULT 0;[/mysql] [mysql]ALTER TABLE `forum_topics` ADD `ft_dislike` INT (11) DEFAULT 0;[/mysql]
-
Use a cookie session