Jump to content
MakeWebGames

Dayo

Administrators
  • Posts

    2,491
  • Joined

  • Last visited

  • Days Won

    196

Everything posted by Dayo

  1. contact your hosts, it sounds asifyoudont have premision to do it
  2. agreed,bit somepeople willcharge that for there time spent making a mod, why work for person x for $10 when you can work for person y for $50
  3. its rwaly not that hard to edit i used DW and have no problems
  4. To remove the ,- open notepad++and look in all files for ,- and replace with nothing the other scripts can be brought from devtek
  5. What is everyones x-box gamer tags there isnt one on these boards. also post the main games you play mine is Dayo1337 :D i mainly own players of COD MW2, COD WaW and COD MW :D there are a few other games i play ill post them later
  6. look for print "<font color=red>{$_GET['nextstep']}. Using your {$r1['itmname']} you hit {$odata['username']} doing $mydamage damage ({$odata['hp']})</font> \n"; and replace with print "<font color=red>{$_GET['nextstep']}. Using your:<br\> <img src = \"".$r1['itmname'].".GIF\" /> you hit {$odata['username']} doing $mydamage damage ({$odata['hp']})</font> \n"; you need to make a image for eash item and call it what you call the item go a glock would be glock.gif
  7. After the release of themercenary.net i am going to make a social site for MMORPG gamers. Here people can browses a directory of online games with added features such as auto registration to games (1 click sign up*), game reveiws, blog's, user chat, freinds and a feature where a user can invite his/hers freinds to a game. This will be totaly free ... both for users and game owners This site will be opened around about June/july and could be a great source of visitors, as far as i know there isnt a social site specificly for text based games so would be one of a kind ;D If you think there could be anything i can add to this just post below and ill see what can be done. *we send info from our DB to your DB (throgh a file on your site) this is things such as email, password (encryped), username this will simply insert the user in your database and log them in, you specify where your db conection file is and the file will do the rest :thumbsup:
  8. Dayo

    Mail() in XAMPP

    look for this in xampp/php/php.ini (think thats the location (just closed files and cba to reopen)) [mail function] ; For Win32 only. ; [url]http://php.net/smtp[/url] SMTP = localhost ; [url]http://php.net/smtp-port[/url] smtp_port = 25 ; For Win32 only. ; [url]http://php.net/sendmail-from[/url] ;sendmail_from = postmaster@localhost ; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). ; [url]http://php.net/sendmail-path[/url] ;sendmail_path = "\"C:\xampp\sendmail\sendmail.exe\" -t" ; Force the addition of the specified parameters to be passed as extra parameters ; to the sendmail binary. These parameters will always replace the value of ; the 5th parameter to mail(), even in safe mode. ;mail.force_extra_parameters = ; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename mail.add_x_header = Off ; Log all mail() calls including the full path of the script, line #, to address and headers ;mail.log = "C:\xampp\apache\logs\php_mail.log" then edit with your details
  9. there was one arround, all i think you needed to add was htmlspecialchars()
  10. how is that off? lok at some people here they wouldent do it for $5 and you need startpage(), endpage(), smenu(), mainmenu() and userstats() there the ones of the top of my head
  11. No problem mate i would of replyed earlier but i was at work on my phone so its a bit hard to code :P ... is that what the sorta thing you was looking for?
  12. This is what you want isnt it Action restrictions <?php $allowed = array('1', '2', '3', '4', '5'); if (!in_array($_GET['action'], $allowed)) { echo 'This is not allowed!'; exit; } ?> for url restrictments $allowed = array('http://www.google.co.uk', 'http://www.test.com', 'http://www.duno.com', 'http://www.nowimrelistuckwhattoput.com', 'http://www.cddesigns.org :D'); $url= explode('.', $_POST['URL']) if (!in_array($url[1], $allowed)) { echo 'This URL not allowed!'; exit; } ?> PLEASE NOT THESE ARE NOT TESTED!!! this is just something to base your code on ...
  13. if you cant afford 50 tell me what you can afford and we will work something out :D
  14. i also do a advertisment thing where users can invite there freinds to play once they play the user gets how evermuch money/crystals you want them too or can be done for items go to http://apps.facebook.com/themercenaryrpg/invite.php for a demo
  15. Thank you MD :thumbsup:
  16. Just PM me what you like and your budget and it will be done for you mate :thumbup:
  17. no he said Well i don't think bill gates just said - oi coders simply take vista add some sh!t and sell it but on topic can you tell us atleast the concept and engin you are using or if you just have an idea (what it sounds like)
  18. its alot more secure then mccodes by far well worth using
  19. no problem mate, try to find where your errors are loged, its much easier knowing what the error is rather then taling a stab in the dark
  20. do you have the HTML + CSS if so you just have to put it into the correct functions PM me ill do it for $5-10
  21. yea that looks correct atm
  22. can you disable that message? ... also just a question you have made the table gangSTATUS
  23. re is your error log?
  24. this? function gang_staff_status(){ global $db,$ir,$gangdata; if(isset($_POST['vp'])){ $db->query("UPDATE gangs SET gangSTATUS='".mysql_real_escape_string($_POST['vp'])."' WHERE gangID='".$gangdata['gangID']."'"); echo mysql_error(); print "Gang Status changed to ".$gangdata['gangSTATUS']; }else{print "<form action='yourgang.php?action=staff&act2=vicepres' method='post'>Enter the ID of the new vice-president. ID: <input type='text' name='vp' value='".$gangdata['gangSTATUS']."' maxlength='10' width='7' /> <input type='submit' value='Change' /></form>";} }
  25. try this function gang_staff_status(){ global $db,$ir,$gangdata; if(isset($_POST['vp'])){ $db->query("UPDATE gangs SET gangSTATUS=".mysql_real_escape_string($_POST['vp'])." WHERE gangID={$gangdata['gangID']}"); print "Gang Status changed to ".$gangdata['gangSTATUS']; }else{print "<form action='yourgang.php?action=staff&act2=vicepres' method='post'>Enter the ID of the new vice-president. ID: <input type='text' name='vp' value='".$gangdata['gangSTATUS']."' maxlength='10' width='7' /> <input type='submit' value='Change' /></form>";} }
×
×
  • Create New...