Jump to content
MakeWebGames

jcvenom

Members
  • Posts

    575
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by jcvenom

  1. where about is the code you entered for the mod
  2. I suggest you contact Shane matthews or Ronald hommes for this Shane is very advanced with all of his code and ronald was in the team that built crimevalley.com again a very professional coder also sniko is a great coder i have seen alot of work from him again very experienced
  3. run the cron manually and see what error its shows must likley your missing a { or } somewhere post the cron code here
  4. !Angel is not judging you !Angel is just trying to show you that your knowledge of php is not as good as you think and it seems you are just using anything you find without even seeing how things work etc e.g like the structure of a code and you dont expect all mods to work without tweaking them and if you need help you never ask nicely you just expect everything to be done for you and you haven't posted once you've actually posted numerous times about nearly the same thing so the question is why do you like to waste people's time if your not going to atleast learn from people helping you
  5. If that is seriously the problem i will just ............
  6. Well i wouldnt mean post the whole code i simply meant post the header code section
  7. The least you could do is post the code here
  8. Its and old mod what issues are you currently experiencing
  9. may i ask what you mean by a GRPG coder it would be nice to be specific also what do you look for in a coder
  10. jcvenom

    got a question

    Where?????
  11. yes what the url for your cron
  12. jcvenom

    got a question

    Change your id to 1 and then try registering again it now should be id 2 i can fix this for you if you cant do it msg me
  13. Thanks for that
  14. jcvenom

    got a question

    Are you currently the only user on the game
  15. Looks like Cpanel Crons say your cron was http://yourgame.com/crons/update_daily.php you just insert into the crons curl http://yourgame.com/crons/update_daily.php >/dev/null 2>&1 i prefer to use >/dev/null 2>&1 at the end of it
  16. Willing to pay?? and what version of Mccodes
  17. simple is this for mccodes?
  18. but who said his game was in the sub directory but in an incident that the game is in a sub directory you could use include(__DIR__.'global_funcs.php');
  19. Ahh i see now it already asks you to include some functions in your global_funcs file meaning you probably haven't included the file to your register.php To fix do as follows below Add this to global_funcs function class_dropdown($connection, $ddname = "classID", $selected = -1) { global $db; $ret = "<select name='$ddname' type='dropdown'>"; $q = $db->query( "SELECT `classID`, `classNAME` FROM `player_class` ORDER BY `classID` ASC"); if ($selected == -1) { $first = 0; } else { $first = 1; } while ($r = $db->fetch_row($q)) { $ret .= "\n<option value='{$r['classID']}'"; if ($selected == $r['classID'] || $first == 0) { $ret .= " selected='selected'"; $first = 1; } $ret .= ">{$r['classNAME']}</option>"; } $ret .= "\n</select>"; return $ret; } function getPlayerClass($uId = NULL) { global $db, $userid; if(!$uId) $uId = $userid; $u = $db->fetch_row($db->query("SELECT `player_class` FROM `users` WHERE userid = {$uId}")); $class = $db->query("SELECT `classNAME` FROM `player_class` WHERE `classID` = {$u['player_class']}"); if ($db->num_rows($class)) { $c = $db->fetch_row($class); return $c['classNAME']; } else return "Not Defined"; }   Then in your register.php add   include ('/global_funcs.php');
  20. Ahh you add your tr etc after the last tr in register script mainly below the email section also you are getting an error because you haven't declared class_dropdown() as a function meaning you must add case 'class_dropdown': class_dropdown(); break; Somewhere if im not mistaken correct me if i am.
  21. I already mentioned to you about using jquery
  22. margin-left:-196px;
  23. jcvenom

    !Angels Web Services

    Use this guy talented and knows what he's doing and i've seen his work very good :D
  24. I dont understand what you mean exactly because how far left should it be etc if i were you id use a margin
×
×
  • Create New...