-
Posts
2,657 -
Joined
-
Last visited
-
Days Won
74
Content Type
Profiles
Forums
Events
Everything posted by Uridium
-
made my first mod Edit Username
-
downloaded and installed where is this to download ?
-
I may have to start learning this engine code make some mods
-
im the same i cant see an error HOWEVER what you need to do now is a bit of detective work on the INSERT INTO count from the insert how many is being INSERTED i can see there are 15 now goto you phpmyadmin ITEMS table and count those should be 15 or 16 (16 incase ID isnt being inserted.. so now all we do is this its a pain but for a Beginner it does work.... ALTER this $db->query( "INSERT INTO `items` VALUES(NULL, {$_POST['itmtype']}, '$itmname', '$itmdesc', {$_POST['itmbuyprice']}, {$_POST['itmsellprice']}, $itmbuy, '{$_POST['effect1on']}', '{$effects[1]}', '{$_POST['effect2on']}', '{$effects[2]}', '{$_POST['effect3on']}', '{$effects[3]}', $weapon, $armor)"); TO this $db->query( "INSERT INTO `items` VALUES(NULL, '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '14', '15')"); That should INSERT all 15 into the ITEMS table cos the data is already there IF it does then we know that there is an issue with the INSERT now all we have to do is 1 by 1 add things back and see which one it breaks on..... Example $db->query( "INSERT INTO `items` VALUES(NULL, '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '14', $armor)"); AND $db->query( "INSERT INTO `items` VALUES(NULL, '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', $weapon, $armor)"); And so on till the script breaks.. NOTE remember when you do this create a new item for each don't use same if its being INSERTED
-
paste your staff_items.php just the NEW ITEM and EDIT ITEM parts
-
looking at the insert i can see a ,, after 750,,'1' that could be a starting point for you
-
maintenance_mod.rar there is a readme.txt file included any issues post on here Add this secition to your minute cron $db->query("UPDATE `maintenance` SET hour=hour-1 WHERE minute = 0"); $db->query("UPDATE `maintenance` SET minute=minute+59 WHERE minute = 0"); $db->query("UPDATE `maintenance` SET minute=minute-1 WHERE minute > 0"); $db->query("DELETE FROM maintenance WHERE hour=0 AND minute=0"); $db->query("DELETE FROM maintenance WHERE hour=-1");
-
Sorry still coding.. It dawned on me that displaying a time to come back to the game could put people off... So ive implemented a colour changer basically like a set of traffic lights Red, Amber Green as your work progresses you can inform your members by changing the colour of the Time block even though your time says 72hours and 25 minutes your users can watch the colours change from red to amber to green to inform them that the work is nearing completion... fixed a few bugs it didn't notice in the meantime
-
Sorry this is taking a while i had an issue with the countdown timer and when I fixed that I had another brainstorm which i'll list 1 = 1 click shut down closes down site immediately (admin still had access) 2= make sure that all closed pages are backed up before any edits are made.. (This will create a backup file of the closed file before you edit anything the file will be renamed from example (inventory.php to inventory.backup). 3 = View all PHP files on your root this will let you view on the page all named php files and will allow you to click on any file to goto that page) 4 = edit any of the current closed file times incase your not quite finished you can increase the offline timer 5 = make sure NO pages can be closed down twice if page is already closed.. 6 = closing header.php will close down entire site (you can set your own time limit here) on #1 the site is shut down for 24 hours 7 = All pages can be open with one click from the OPEN ALL link..... I'll post some pics im still working on the EDIT filename and close all function...... but the rest works fine
-
I'll post as soon as the countdown stops being an arse,
-
Some time ago i made a maintenance mod so you could close your site or a page for maintenance. Ive been messing again with the script and had a bit of a rewrite so now you can close as many pages as you want and as staff still be able to work on the page which wasnt available on the old version you can close the entire site down by closing header.php and again staff can still enter the site and see whats happening.. if your interested in this upgrade i'll post the script
-
Thank you 🙂
-
just so your aware that conf_id in this being 18 only need to be the next available number on your conf_id so if yours stops at 55 then start this one at 56 make a txt file called filedata.txt this is for the inview of the filedata.php file which will allow you to change the link of the file you want to edit to a new one so you dont have to keep uploading filedata.php all the time. INSERT INTO `settings` (`conf_id`, `conf_name`, `conf_value`) VALUES ('56', 'editpage', 'explore.php');
-
im assuming its for this but i could be wrong University Of The Streets
-
Nicely done 🙂
-
Not at the moment: but we will keep you posted..
-
Neab/RPE is undergoing a massive transformation and is being updated to work with PHP 7.4 and higher new features are being added and new character map/layout and images are being implemented. This is work in progress and we are pleased with the current results. The old admin panel has been upgraded and more options for staff have been added. your probably wondering why I have placed RPE after Neab well the new name for Neab engine.. is Rusted Pipe Engine...
-
As the title suggests will an old copy of mccv2 work on todays php upgrade.....
-
Just looking at some of the names from your list with a great big smile on my face, Would love to rewind the clock and have the fun we used to have on here. from the days of "Criminal Existence" when I had just started out with MCCODES...
-
I think i still have the project V3 on a spare HD i'll have too dig it out
-
you are aware that this Mod was made for NWE and not MCCODES ?
-
I did finish the script but as FunMayHem have since closed the marketplace its no longer available I'll have toi look on some old hard drives to see if i can find a copy of it
-
is it healing both users at same time ?
- 17 replies
-
- mccode-v2
- mccode-lite
-
(and 3 more)
Tagged with:
-
Maybe Remove healing Item from healers inv when they use the HEAL. and if user doesnt have anything to heal anyone with the the HEAL option isnt displayed
- 17 replies
-
- mccode-v2
- mccode-lite
-
(and 3 more)
Tagged with:
-
Count me in even if its only for Ideas