Just Ace
Members-
Posts
53 -
Joined
-
Last visited
-
Days Won
1
Content Type
Profiles
Forums
Events
Everything posted by Just Ace
-
Finally actually NonStopCoding that was a part of the needed fix, I can now adjust the original MCCodes and just integrate it myself. I tried that before but I still have them defines in the header, but works a treat now. Thanks for any help peeps.
-
Yes it works, I'm guessing the person who helped integrate it did use a different version, I've tried to replace some things from the old one into the new one, but I've had no luck, probably done something wrong. I removed them, it didn't work since it's the mainmenu file which is effecting it not the header as the header is the one i sent you :) any ideas?
-
Decided to try this and worked, thanks!
-
Having a slight issue with the new template I've added to my game. Basically pages are not showing and only the header/mainmenu is, after checking staff panel, that actually shows but is provided by smenu.php so is seperate to mainmenu. So mainmenu.php is surely the issue? <?php global $db,$c,$ir, $set; $hc=$set['hospital_count']; $jc=$set['jail_count']; $ec=$ir['new_events']; $mc=$ir['new_mail']; if($ir['hospital']) { print " <li><a href='hospital.php'>Hospital ($hc)</a></li> <li><a href='inventory.php'>Inventory</a></li> "; } else if ($ir['jail']) { print "<li><a href='jail.php'>Jail ($jc)</a></li>"; } else { print "<li><a href='index.php'>Home</a></li> <li><a href='inventory.php'>Inventory</a></li>"; } print ($ec > 0) ? '<li><a href="events.php" style="font-weight: bold;">Events (' . $ec . ')</a></li>' : '<li><a href="events.php">Events (0)</a></li>'; print ($mc > 0) ? '<li><a href="mailbox.php" style="font-weight: bold;">Mailbox (' . $mc . ')</a></li>' : '<li><a href="mailbox.php">Mailbox (0)</a></li>'; if ($ir['jail'] and !$ir['hospital']) { print " <li><a href='gym.php'>Jail Gym</a></li> <li><a href='hospital.php'>Hospital ($hc)</a></li> "; } else if (!$ir['hospital']) { print " <li><a href='explore.php'>Explore</a></li> <li><a href='gym.php'>Gym</a></li> <li><a href='criminal.php'>Crimes</a></li> <li><a href='job.php'>Your Job</a></li> <li><a href='education.php'>Local School</a></li> <li><a href='hospital.php'>Hospital ($hc)</a></li> <li><a href='jail.php'>Jail ($jc)</a></li> "; } else { print "<li><a href='jail.php'>Jail ($jc)</a></li>"; } print "<li><a href='forums.php'>Forums</a></li>"; print ($ir['new_announcements']) ? '<li><a href="announcements.php" style="font-weight: bold;">Announcements (' . $ir['new_announcements'] . ')</a></li>' : '<li><a href="announcements.php">Announcements (0)</a></li>'; print " <li><a href='newspaper.php'>Newspaper</a></li> <li><a href='search.php'>Search</a></li> "; if (!$ir['jail'] && $ir['gang']) { print "<li><a href='yourgang.php'>Your Gang</a></li>"; } if ($ir['user_level'] > 1) { print " <li><a href='staff.php'>Staff Panel</a></li> "; $online_cutoff = time() - 900; $q = $db->query( "SELECT `userid`, `username`, `laston` FROM `users` WHERE `laston` > ({$online_cutoff}) AND `user_level` > 1 ORDER BY `userid` ASC"); while ($r = $db->fetch_row($q)) { print '<li><a href="viewuser.php?u=' . $r['userid'] . '">' . $r['username'] . '</a></li>'; } $db->free_result($q); } if ($ir['donatordays']) { print " <li><a href='friendslist.php'>Friends List</a></li> <li><a href='blacklist.php'>Black List</a> "; } print " <li><a href='preferences.php'>Preferences</a></li> <li><a href='preport.php'>Player Report</a></li> <li><a href='helptutorial.php'>Help Tutorial</a></li> <li><a href='gamerules.php'>Game Rules</a></li> <li><a href='viewuser.php?u={$ir['userid']}'>My Profile</a></li> <li><a href='logout.php'>Logout</a></li>"; ?> Original MCCodes V2: <?php global $db,$c,$ir, $set; $hc=$set['hospital_count']; $jc=$set['jail_count']; $ec=$ir['new_events']; $mc=$ir['new_mail']; if($ir['hospital']) { print "<a href='hospital.php'>Hospital ($hc)</a><br /> <a href='inventory.php'>Inventory</a><br />"; } elseif($ir['jail']) { print "<a href='jail.php'>Jail ($jc)</a><br />"; } else { print "<a href='index.php'>Home</a><br /> <a href='inventory.php'>Inventory</a><br />"; } if($ec > 0) { print "<a href='events.php' style='font-weight: 800;'>Events ($ec)</a><br />"; } else { print "<a href='events.php'>Events (0)</a><br />"; } if($mc > 0) { print "<a href='mailbox.php' style='font-weight: 800;'>Mailbox ($mc)</a><br />"; } else { print "<a href='mailbox.php'>Mailbox (0)</a><br />"; } if($ir['jail'] and !$ir['hospital']) { print "<a href='gym.php'>Jail Gym</a><br /> <a href='hospital.php'>Hospital ($hc)</a><br />"; } else if (!$ir['hospital']) { print "<a href='explore.php'>Explore</a><br /> <a href='gym.php'>Gym</a><br /> <a href='criminal.php'>Crimes</a><br /> <a href='job.php'>Your Job</a><br /> <a href='education.php'>Local School</a><br /> <a href='hospital.php'>Hospital ($hc)</a><br /> <a href='jail.php'>Jail ($jc)</a><br />"; } else { print "<a href='jail.php'>Jail ($jc)</a><br />"; } print "<a href='forums.php'>Forums</a><br />"; if($ir['new_announcements']) { print "<a href='ann.php' style='font-weight: 800;'>Announcements ({$ir['new_announcements']})</a><br />"; } else { print "<a href='ann.php'>Announcements (0)</a><br />"; } print " <a href='newspaper.php'>Newspaper</a><br /> <a href='search.php'>Search</a><br />"; if(!$ir['jail'] && $ir['gang']) { print "<a href='yourgang.php'>Your Gang</a><br />"; } if($ir['user_level'] > 1) { print "<hr /> <a href='staff.php'>Staff Panel</a><br />\n"; print "<hr /><b>Staff Online:</b><br />"; $q=$db->query("SELECT * FROM users WHERE laston>(unix_timestamp()-15*60) AND user_level>1 ORDER BY userid ASC"); while($r=$db->fetch_row($q)) { $la=time()-$r['laston']; $unit="secs"; if($la >= 60) { $la=(int) ($la/60); $unit="mins"; } if($la >= 60) { $la=(int) ($la/60); $unit="hours"; if($la >= 24) { $la=(int) ($la/24); $unit="days"; } } print "<a href='viewuser.php?u={$r['userid']}'>{$r['username']}</a> ($la $unit)<br />"; } } if($ir['donatordays']) { print "<hr /> <b>Donators Only</b><br /> <a href='friendslist.php'>Friends List</a><br /> <a href='blacklist.php'>Black List</a>"; } print "<hr /> <a href='preferences.php'>Preferences</a><br /> <a href='preport.php'>Player Report</a><br /> <a href='helptutorial.php'>Help Tutorial</a><br /> <a href='gamerules.php'>Game Rules</a><br /> <a href='viewuser.php?u={$ir['userid']}'>My Profile</a><br /> <a href='logout.php'>Logout</a><br /><br /> Time is now<br /> "; echo date ('F j, Y')."<br />".date('g:i:s a'); ?> Thanks for any help!
-
100% certain, Opera seems to work fine though.
-
Issue found, it's not the script itself, it's the browser(s) I tried with Chrome & Firefox and the issue is there. I tried over my IPhone & Tablet and there is no issue, so I'm sure it's the browser even after clearing history and caches.
-
Same as the original MCC V2 - Just with Daves Ajax Donation code in with it too. Tried getting rid of that and seeing if it was a fix, that wasn't an issue.
-
Thats the whole point I don't know where the code is. I've been tweaking loads of files to see where/what it could be. Tried files such as inventory, itemuse, itemsend also tried deleting the items and remaking them and seeing if that would work.
-
Having a huge problem at the moment, I've spent a whole hour trying to solve the problem and so far no luck and I don't know where else is to look. So basically every time I use an item in the Inventory only doing 1 click uses double of the item. The same goes for sending an item too, the input was 1 but sent 2 over. Anybody have any clue what the issue could be?
-
What was the fix buddy?
-
Don't embarrass me too much :P I intend to pay for a lot of things and it's never too late to learn.
-
Very simple and slightly silly question i'm fairly new to using sql's, an example of what I mean below: $db->query("UPDATE users set money=money+{$money} WHERE userid={$userid}"); What areas of that code do i need to change in order for it to be putting an item into someones inventory. (Example I want it to be Item ID 5)
-
I can confirm that Richards business mod, 98% of it works. The other 2% being the fact that you will have to fix Job Applications for people to join your business, that was the only error I came across.
-
I think there are some but not many, most RC Engine games ive seen have made there own mods, simply down to the fact that RC Engines coding is so bad so game owners recoded it slightly and created there own modules, I'd happily create you some, but it's not nice working with that engine on a personal note! Goodluck anyhow!
-
Hello all! So yes, I'm looking for a partner to work with me long term, my project i'd say is about 50% complete, as so far I have recoded the whole MCCodes V2 engine into my own, also added several modules and recoded them to fit the game. What is left to do? - Re-create a responsive layout. - Enroll for both Apple & Google Play stores. - Have the game developed and designed into a mobile App then submitted for review on the stores, I have an App Development company ready for payment at any time I wish to go forward. (Approval is very high to get into the store after reading the requirements) - Have our App's marketed and drive traffic to the game and pray for success. - A 3rd option is to also push the game to be a facebook application, which would be an even bigger boost. For those interested do give me a message and we could possibly arrange something, I really need someone who can bring something to the table though who has had atleast bits of success in the past with the stuff that's left to do.
-
I'd really recommend fixing a new background, or maybe keeping the same but going for a darker colour, I wouldn't want to blind my users! Also going through every page to make sure nothings out of place :)
-
Smartsheet could may be use to you, it's the only one ive ever actually used though so I don't know if it fits what you need!
-
http://www.gluepromotions.com for anyone interested!
-
I'll start now, if fixed - $15.
-
Yeah it's £79 for the year! I probably will be lazy for the time being and make it mobile compatible to be a web view on the app & then maybe the real plan would be to hire someone to get the actual job done for me, I'm already in contact with a Company that has given me a good offer to do that work, but I don't want to dip too far into my money pot just yet! On the good side of it all, I do have a Mac, provided from work so guess that's covered.
-
I'll be grabbing your heists one right now!
-
Just a heads up NonStopCoding, I think all download links on MCCodes are broke, whether it's now fixed I dont know! ^^^ That was silly they aren't MCCodes links haha! Ignore that! Anyhow, I also recommend your modules to anybody and everybody.
-
So after very nearly recoding an MCCodes engine into practically my very own, I don't feel like just a Browser release is good enough these days, so I've been thinking of some other options, which you'll probably all agree, is how most games and apps become successful nowadays. - Apple Store - Android/Play Store So there is probably someone around on here who can help me out and give me some experienced information and tips towards what I want to achieve and how I should achieve it. My initial plan now is to Enroll on the Apple Developer program. This is just basically to give you the rights to make an app, give you the rights to submit the app for review before release & then literally eventually releasing it on the App Store. (I could be slightly wrong with that, but I'm probably right along with you get lots and lots of developer tools when enrolling) Now i'll get straight to the point, I've been trying to do my research on converting a Browser game into an Apple App, nothing is quite clicking with me on what it is initially I need to do. So my question, how & what do I need to do to convert a browser game into an Apple App? -Thanks for reading.
-
I sent details in support ticket Kyle