Jump to content
MakeWebGames

Legaci

Members
  • Posts

    82
  • Joined

  • Last visited

Everything posted by Legaci

  1. i rebuilt this File previously in my old version of RCcodes. originally it was poor and had exploits that was making it easy for people to cheat it. I would rebuild it if i was you.?
  2. http://gyazo.com/3a4c3333932881f83d0412be4b61e9f8   Just as proof that ICC is the owner still and that licences can only be bought through him....
  3. ICC still holds the licence for the script...... RC engine is a good game if you want to spend the hours Debugging it there are so many loop holes... I have a engine fully debugged but still needs work Every page with in the engine needs work..... Every $query has been done the long way not that its an issue but its messy....... i would advise staying with MC until atleast your knowledge of development is a higher standard, and then after that i would try building your own unique version. Something i am looking into doing. Good luck hybridd
  4. You owned a version of this game :) any way i hope we helped ;)
  5. LOL funny :P made me laugh thanks sniko..   you can see rc 2.0 at http://www.university-of-the-streets.com just saying :P hahahaa
  6. Firstly, JCVenom why using $_SESSION when thats already declared with $pl in style_top Just sloppy not using something if its already declared. Secondly, Hybridd When adding to a column that already exists such as `wallet`, `my_points`, my_maxenergy & my_dondays you want to set the column you using first IE `wallet` = `wallet`<<--(your first figure) + 100 you also dont need to put these ' around numbers. hope this helps for the future!!
  7. Legaci

    For sale U.O.T.S

    Nothing but the engine is for sale it is a one time purchase and every mod will be contained in u.o.t.s only to keep it as unique as possible nothing will get sold ;) but yes attack system is cool...
  8. Legaci

    For sale U.O.T.S

    Yeah sure its username: demo password: demo
  9. Legaci

    For sale U.O.T.S

    Everything but the domain. But you will recieve the .zip file on purchase.
  10. University-of-the-streets.com is now for sale!! http://gyazo.com/d7656ef3108f55433261622584a3a43b This game has unique features that no-one else has.. -: Stylish attacking system. http://gyazo.com/ab63a0709acd418b1e6905b314dcd305 Sign up take a look around and post offers here or mail :- [email protected] or [email protected] for direct contact. Each mod has been completely developed from the ground up! with a wide use of developing languages preferable no time wasters please. only 1 script for sale not to be sold seperately. keep this game unique and 1 of its kind.
  11. No chance of 0 in this if i am correct rand(1,36); Should this not be 0,36
  12. Venom please Tell me where i would connect to the database in this file Jezus!!!!! Nothing "Dodgy" just he running this with error_reporting on in php.ini Shows all warnings ect If he was to turn it off it would work but i would rather fix warnings...   Karl i have fixed this before i cant remember the exact fix but im sure it was just simply defining those to variables cant remember i will test you code and check it for you ;)
  13. Legaci

    Braveland

    Thanks angel!
  14. making sure form action='authentication.php' with out that it wouldnt divert to this file
  15. jcvenom your wrong why would it require a connection file nothing in this file requires any database settings ( think about it) you have to define getimagetext on line 98 could try this $pass_phrase=""; $graphic_dot__color=""; bad fix but should work i have completed this fix before
  16. Legaci

    Braveland

    ive built many things into my game that the other engines do not have some are easy to do but also can be effective to gameplay searchthestreets gymlockers russianroulette ect ive built a great bookies system into it there are many travelling locations with amazing features in it i was the first person to own/run the login and was built by a good friend who made alot of money on it :) ive been working on a javascript missions tab http://gyazo.com/4967d466b2e7eb748408f4bf1d087871 http://gyazo.com/ae6c19c985237617f4aa24b85a1deb15 i also have javascript chat for players to chat with each other i have also completely modified companies in order to change the way the game plays
  17. Legaci

    Braveland

    I have been rebuilding this game, So far so good so if you want to check it out and chuck me some feedback i will be grateful, all criticism will be noted would be good to here your ideas on making my game better thanks legaci http://www.bravelandcity.com Feel free to stay and play if you like it
  18. Not criticism but after every function you dont need global variables only in the function that uses it but the if you define the variables you dont need it also $ir,$db,$c these are all defined already and not necessarily needed if you add the header to those pages :) good work!!!
  19. already tried that one :/
  20. i have tried defining it but it doesnt work....
  21. so are you saying if(!isset(check_for_the_dot[0]))
  22. Notice: Undefined variable: eq in C:\Users\AJ\Downloads\USBWebserver v8.5\USBWebserver v8.5\8.5\root\index.php on line 479   $q_ry = "SELECT `item_id`,`item_picture` FROM `items` WHERE `item_id` IN ('".$do['melee']."', '".$do['secondary']."', '".$do['primary']."', '".$do['temporary']."', '".$do['armour']."')"; $eitems = mysql_query($q_ry); while($r = mysql_fetch_array($eitems)) { $eq[$r['item_id']]=$r; } echo "<table cellspacing='0' border='0' width='0px'> <tr><td align='left'>"; if($eq[$do['melee']]['item_id']) { echo "<img src='images/items/".$eq[$do['melee']]['item_picture']."'></td>"; } else { print ""; }   line 479 is: if($eq[$do['melee']]['item_id'])   i have tried everything possible (but nothing seems to work for me!) i know i could turn notices off but perfection is what i am after
  23. ok i removed the 1 and added 0 and works now thank you
  24. I currently working on a game i am building... Notice: Undefined offset: 1 in C:\Users\AJ\Downloads\USBWebserver v8.5\USBWebserver v8.5\8.5\root\global_reg.php on line 68 Notice: Undefined offset: 1 in C:\Users\AJ\Downloads\USBWebserver v8.5\USBWebserver v8.5\8.5\root\global_reg.php on line 74   else { $email = explode("@", $_GET['string']); $check_for_the_dot = explode(".", $email[1]); if(substr_count($_GET['string'], "@") > '1') { echo "<font color='white'><b>No more than one \"@\".</b></font>"; exit(); } if(!$check_for_the_dot[1]) { echo "<font color='white'><b>Email address will be verified.</b></font>"; exit(); }   Line 68 is : $check_for_the_dot = explode(".", $email[1]); Line 74 is :if(!check_for_the_dot[1]) Would this work for Line 74 if (isset(!check_for_the_dot[1])) !check_for_the_dot = substr(!check_for_the_dot[1]);
  25. very hot :P i have to say that is a good project very well done
×
×
  • Create New...