Jump to content
MakeWebGames

Dayo

Administrators
  • Posts

    2,491
  • Joined

  • Last visited

  • Days Won

    196

Everything posted by Dayo

  1. does it not work for chrome? ill have a look at it when i get home and try to fix the problem, if possable can you print screen it
  2. you run the sql, edit safe.php with your details (i think it was that file) then run a file duno if it wascalled install or somat, there should be instructions in the folder if i remember
  3. i would urge you against mccodes, there are a lot better free scripts to use - the new zap engin looks quite good but is in development - GL scripts - or there was a script like Tribal wars and you can get a pirate theme that looks very good may wana look at this, i have it setupon my test server ill send u the files if you like
  4. Dayo

    Session issue

    oh yea, stupid keyboard :wacko:
  5. Dayo

    CSS Tester

    also get firebug for FF, you can edit your site within the browser and is good for finding small bugs and seeing how to fix them
  6. version 1.0.1 relesed, - Name bug fix - Added more settings
  7. Dayo

    Session issue

    you could do something like this if (!isset($_SESSION['uGang'])) { $fivgz=$db->query("SELECT gangNAME, gangID FROM gangs ORDER BY gangRESPECT DESC LIMIT 3"); while($r=$db->fetch_row($fivgz)) { $_SESSION['uGang'] = "[size="1"]<a href='gangs.php?action=view&ID={$r['gangID']}'>{$r['gangNAME']}<a> [/size]";} } else {echo $SESSION['uGANG'];} this probly can be done a better (more secure way ... not sure im no hacker but your storing html data then echo'in it so i spose there is an issue there) please note this may not work, i did itwhile on break at work on a dogey keyboard
  8. Yea the wsirc allows your users to sign up with what ever name they want. To do this open chat.php and replace autojoin=true to autojoin=false. (I think those are the varables it will be someting similar to that) if you leave it as that they login automaticly also IF you do this I advise you to register your admin/mod accounts
  9. i would of had the gold one 1st silver one 2nd and bronze 3rd im liking these badges tho :thumbsup:
  10. Dayo

    Query

    --- post removed --- re looking over it you have to use the two querys
  11. Dayo

    weird

    have you uploaded class/ and its contents
  12. i recon there should be a section on the users profile for developers/buyers to write a testimonial on the service received. it would help alot of people, you could maby do it so you can only post one after you have 15 posts so you dont get some newb going `OMFG!!!!! you hacked my game!!!!!` also the user cant delet his own testimonals ...
  13. atm its on the free mccodes mods section
  14. DONE! - no need to pay me tho :D
  15. Here is the wsirc chat intergrated with your mccodes version, this has a simple ban/unban user system too here is the sql you have to run [mysql]ALTER TABLE `users` ADD `cBan` TEXT NOT NULL , ADD `cReason` TEXT NOT NULL [/mysql] here is chatglobals.php link to script here is chat.php link to script download link Download link Support can be found at my forum located at http://www.cddesigns.org/index.php Enjoy :thumbsup:
  16. i use dreanweaver and notepad(++)
  17. Dayo

    Variable inside $_GET

    yes but it is a better way to pass info thro varables rather then making 20 difftrent $_GET varables
  18. Dayo

    Variable inside $_GET

    lol i just saw what i wrote lack of sleep and a 14 hour shift does hell for my coding :P it should be $b = array('1a', '2b', '3c', '4d', '5e'); //put the data into an array $_GET['data]=implode(',', $b); // make the array a string and assign it ot $_GET['data'] $c=$_GET['data']; //then to get the info $data=explode('-', $c); //makes $c into an array with data as $c[0] and your data string as $c[1] (to add more data just add "-" then your string) $data=explode(',', $data[1]); // remakes the origanal array from the string echo $data[0]; //returns 1a
  19. add the bold code into your input button tag <input type="image" src="url/to/submit/button.gif"> re-reading your post i see its just a text link not an input button so try using CSS or even just [/img]
  20. by link do you mean advertisment, that would be handy to buy/sell your advertisment space
  21. Dayo

    Variable inside $_GET

    what i think he is trying to do is this $b = array('1a', '2b', '3c', '4d', '5e'); //put the data into an array $c = $_GET['data-'.implode(',', $b)]; // make the array a string and add "data-" before it //then to get the info $data=explode('-', $c); //makes $c into an array with data as $c[0] and your data string as $c[1] (to add more data just add "-" then your string) $data=explode(',', $data[1]); // remakes the origanal array from the string echo $data[0]; //returns 1a this is not tested but hope it helps :)
  22. yea, if you find any bugs/loopholls/hacks can you PM me, :D
  23. no problem
  24. you can ask me my game is running GL script - themercenary.net
  25. i prefer the market place ... just think to reach the target market they dont have to search throgh a forum with outdated/unsecure mods they can just click marketplace - mccodes and there there
×
×
  • Create New...