-BRAIDZ- Posted February 4, 2016 Posted February 4, 2016 I have been trying to convert it for RC Engine, and I have not been successful, I tried changing all the queries to suit RC engine, but nothing it just gives me a blank Page and only shows my stats, like my happiness, my nerve,my energy, just nothing with the actual mod Quote
-BRAIDZ- Posted February 6, 2016 Author Posted February 6, 2016 I can provide screen shots of what it's doing and will also provide snippets of what I've done to try convert it Quote
Coly010 Posted February 7, 2016 Posted February 7, 2016 Provide the all the code related to the mod that you have. Your problem sounds like a syntax error, but we'll need to see the code to find it Quote
-BRAIDZ- Posted February 10, 2016 Author Posted February 10, 2016 I will post it sometime soon using my phone at the moment as I have no internet connection till between Tuesday and Thursday next week. Then I'll be away on Thursday for 5-6 days. The mod works on crappy ravens when I was using that. I might even try some more debugging myself Quote
-BRAIDZ- Posted February 11, 2016 Author Posted February 11, 2016 Provide the all the code related to the mod that you have. Your problem sounds like a syntax error, but we'll need to see the code to find it Here's what I have done to try and convert it and this is what I'm getting Quote
Coly010 Posted February 11, 2016 Posted February 11, 2016 Here's what I have done to try and convert it and this is what I'm getting Like I said, seems like a syntax error. I'll need to see the code to help. What do you use to write your PHP code? Quote
-BRAIDZ- Posted February 11, 2016 Author Posted February 11, 2016 Like I said, seems like a syntax error. I'll need to see the code to help. What do you use to write your PHP code? Sorry I thought I posted the paste here it is: http://pastebin.com/mM71Hfpb Quote
G7470 Posted February 12, 2016 Posted February 12, 2016 As I could not find any syntax errors on this file PHP-wise (and have ran it through a PHP code validator to verify this), there may be a few reasons as to why this may not be working at all (assuming that the variable $ir is defined): The variable $lottoconfig is not defined anywhere. It's not defined on this file, so unless it's defined in one of your include files, then you have a problem there. You are checking it on line 7, so if that is not set, it'll break. You do not have any of the tables for this mod in your database yet. For example, in the lotto() function, it is immediately running a query on the lottery_players table. If that doesn't exist, this won't work. money_formatter() function is not defined. I think that this is defined in RC, but as I don't have a copy of that engine myself, I can't say for sure. I would double-check that. I would suggest displaying all of your errors (using error_reporting(E_ALL); to do so) so that you will be able to get a handle on what's going on in your code. ~G7470 Quote
-BRAIDZ- Posted February 12, 2016 Author Posted February 12, 2016 No errors being displayed, and all tables are in my database. And lotoconfig is defined in my brain_file.php file Quote
AdamHull Posted February 12, 2016 Posted February 12, 2016 Do you use $ir In your other files to retrieve user info from database? Quote
KyleMassacre Posted February 13, 2016 Posted February 13, 2016 [uSER=67703]adamhull[/uSER] is on to something here. You need to remove the global variables that you are using in your functions since RC (from what I remember) doesn't use the $db, $ir, $set variables so most likely you are getting undefined variable errors Quote
-BRAIDZ- Posted February 13, 2016 Author Posted February 13, 2016 I have tried to remove global variables and still nothing Quote
AdamHull Posted February 13, 2016 Posted February 13, 2016 On line 7 your using $ir['playerid'] is it that? Of its not your code is going to fail.on line 7 Quote
-BRAIDZ- Posted February 13, 2016 Author Posted February 13, 2016 I will have a look may have to change it the $pl Quote
-BRAIDZ- Posted February 13, 2016 Author Posted February 13, 2016 Here's what I've done.. And still getting nothing http://pastebin.com/mSrkh3zm Quote
-BRAIDZ- Posted February 13, 2016 Author Posted February 13, 2016 Could it be the way the queries are set out? Because if you take notice they are a heap different to RC I've only charge it from $db->query to myself_query. So it could just be the was they are set out, as RC engines queries are set out as such.. $q_ry = array(); $q_ry = "INSERT INTO `members_items` VALUES ('NULL', '".mysql_real_escape_string($item_number)."', '162', '".mysql_real_escape_string($payment_qty)."')"; mysql_query($q_ry); } Quote
-BRAIDZ- Posted February 13, 2016 Author Posted February 13, 2016 Here is what I have now. http://pastebin.com/fPFjpA3C And this is all I'm getting from it now. Quote
-BRAIDZ- Posted February 13, 2016 Author Posted February 13, 2016 Update on your code? I added this echo " Lottery "; if ($pl['my_jail'] > time() || $pl['my_hosp'] > time()) { echo "Sorry this page is not viewable while in jail or hospital! "; } else { Just to see if the head main would show. I have gotten rid of the calling of global at the start of each function and changes $ir to $pl and still no difference, I the first query to see if that would help but it didn't, not sure if I done it correctly though. I did write a comment before with a paste of what I had done Quote
KyleMassacre Posted February 13, 2016 Posted February 13, 2016 Is money_formatter() a valid function? Also, you need to add the global variables in your functions that you are using like the lottoconfig variable. Quote
-BRAIDZ- Posted February 13, 2016 Author Posted February 13, 2016 echo " Lottery "; if ($pl['my_jail'] > time() || $pl['my_hosp'] > time()) { echo "Sorry this page is not viewable while in jail or hospital! "; } else { That's what I added as it's removing & in my previous comment Quote
-BRAIDZ- Posted February 13, 2016 Author Posted February 13, 2016 This there is an error, I'm typing stuff and it's not showing in my comments... And I'm not sure I'll have a look to see if money formatter is or isn't, but I don't think it is Quote
KyleMassacre Posted February 13, 2016 Posted February 13, 2016 If it's not a valid function then that is most likely where your error is coming from. Quote
-BRAIDZ- Posted February 13, 2016 Author Posted February 13, 2016 Okay thank you, I'll change it to number_format Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.