Jump to content
MakeWebGames

Sim

Members
  • Posts

    2,392
  • Joined

  • Last visited

  • Days Won

    62

Everything posted by Sim

  1. Why thank you!!
  2. Well regardless if [MENTION=69762]RCengineOwner[/MENTION] uses his mostly his code OR an already built framework, [MENTION=69762]RCengineOwner[/MENTION] keeps saying its for newbies, [MENTION=69762]RCengineOwner[/MENTION] should at least teach some proper techniques. =0
  3. I find this thread more funny then the first one =)
  4. And even then your game can still get exploited =0
  5. Personally, i am glad a topic got re-created about this. Would of been nicer if the oother one never got closed, but i guess things was getting out of hand.
  6.   I don't think cocky programmers live up to there expectations. Not just on what they say, but regarding business it is just bad. 6 years is not that long to be honest.... I been around longer then twice that (move along kid) ;] lols.
  7.   Unrelated to encyption, I don't know understand why there would be a hell of a lot of code on your end that would be required for my end... =0     What is estimated price range?
  8.   Does it matter that your Icecoldcola? Whoever you or he/she is, they not the best. Major corporations can not secure things fully so what makes you think you can? If Icecoldcola is some guru, they would know Security does not exist.   Give you 100 to 1 odd's your getting decrypted and pirated most likely within 1st month depending on who gets a hold of your script. I am betting a few hundred functions do not need to be re-coded. All one needs to do is figure out what is being sent to your server and returned from your server and 1 new file/function to "fake" licensing... Encryption isn't all its hyped up to be either.. ;\   Anyway, I don't want to argue. I wish you the best of the luck & looking forward to seeing how this turns out (feature wise).
  9.   It shows me that the developer(s) did not take enough time to make sure I enjoyed my experience..
  10. I am not... If you play a PC game and it crashed the first 3x you opened it, are you still going to try it?
  11. While its good in Theory, i see this turning into a disaster. Many mainstream scripts that have gotten information from outside ones domain this year has gotten owned. Some just by fetching the version #s. I am sure these developers are more experienced then you and you want to a lot of script work on an external site aka yours? xenForo, phpBB, vBulletin have a hard time doing this. xenForo gets decrypted all the time. However; I would be more concerned about not being able to modify/change built in internal features.
  12. I find this neater lol. =0   //Query our db $q = $db->query("SELECT * FROM users WHERE userid=$userid"); //IF there IS any rows from our query... while($r = $db->fetch_row($q)) { echo $r; } }
  13.   That is fine for 1 result.. Multiple results from the query will produce unwanted outcomes when looping $db->fetch_row($db->query("SELECT * FROM users WHERE userid=$userid"));
  14.   You all just forgot he mentioned he did that already [MENTION=65518]Kyle[/MENTION]
  15. The loop should also ref while mysql_fetch_assoc(), not fetch_row while ($inv = mysql_fetch_assoc($res)) {
  16. I got turned off when I clicked the screen shot so I closed your game. I didnt even look at the screen shot, the point that it opened on the same page as the game turned me off. I prob would of at least looked at the screen shot if it would of loaded in pop up/tab, but then I still wouldn't register since that would of turned me off as well. If you can't take the time to make your homepage function properly, I have no doubt that game doesnt either.. ;\
  17.   I can't remember the last time Ive done it that way, and if its been that long ago, I would think the reason I don't do it is because it don't work -_-
  18.   Not sure if that will work anyway. Wouldn't it just requery on each execution? So you'd be starting from the beggining?
  19. mysql_fetch_row retrieves 1 row from the query [MENTION=69823]jcvenom[/MENTION]
  20.   query() gets all the results you are wanting. statements such as mysql_fetch_assoc() mysql_fetch_array(), mysql_fetch_row() gets what you want from the returned query... ;\
  21. [MENTION=66368]Damo[/MENTION]n, this line is prob the issue: $db->fetch_row(   It might need to be changed to something like $db->fetch_array( or something similar. I am not familar with the mC-code database class. ;\
  22. Something like this =]   $items = "84, 87, 90, 93, 96, 99"; $res = $db->query("SELECT * FROM inventory WHERE inv_userid = {$ir['userid']} AND inv_itemid IN($items)"); while($inv = $db->fetch_row($res)) { if ($invs['inv_itemid'] == 84 && $invs['inv_qty'] > 0){ $on_hand = $invs['inv_qty']; } else { $on_hand = 'None'; } if ($invs2['inv_itemid'] == 87 && $invs2['inv_qty'] > 0){ $on_hand2 = $invs2['inv_qty']; } else { $on_hand2 = 'None'; } if ($invs3['inv_itemid'] == 90 && $invs3['inv_qty'] > 0){ $on_hand3 = $invs3['inv_qty']; } else { $on_hand3 = 'None'; } if ($invs4['inv_itemid'] == 93 && $invs4['inv_qty'] > 0){ $on_hand4 = $invs4['inv_qty']; } else { $on_hand4 = 'None'; } if ($invs5['inv_itemid'] == 96 && $invs5['inv_qty'] > 0){ $on_hand5 = $invs5['inv_qty']; } else { $on_hand5 = 'None'; } if ($invs6['inv_itemid'] == 99 && $invs6['inv_qty'] > 0){ $on_hand6 = $invs6['inv_qty']; } else { $on_hand6 = 'None'; } }
  23. Your game would prob get more register conversions with some screen shots on home page... =0
  24. a link on sniko's twitter just hacked my tablet... let me find out sniko... :/
  25. put this before it all: echo "Price: $price <br>"; echo "Will: $will <br>"; echo "ID: " . $_POST['id']; Your find out what the problem is at least l;]
×
×
  • Create New...