Jump to content
MakeWebGames

Silent-Mafia.eu

Members
  • Posts

    4
  • Joined

  • Last visited

Silent-Mafia.eu's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Apex Web Gaming Top100mmorpgSites GameSites200 mpogtop Top100Arena mpogtop myggworld
  2. Hey everyone, So basically I am recoding my entire game, and would like to see some feedback, positive or negative about it, Here are some screenshots: [ATTACH=CONFIG]584[/ATTACH][ATTACH=CONFIG]585[/ATTACH][ATTACH=CONFIG]586[/ATTACH] The following things have been added so far ~ Gang system installed. ~ Profile page revamped. ~ City page revamped ~ Mission Feature Implemented Development of the engine can be found here: http://devengine-silent-mafia.eu Any suggestions are always welcome!
  3. I use this to filter words, or game links on my site.. It was made for the GRPG engine,   function ReplaceWords($str, $bad_words, $replace_str){ if (!is_array($bad_words)){ $bad_words = explode(',', $bad_words); } for ($x=0; $x < count($bad_words); $x++){ $fix = isset($bad_words[$x]) ? $bad_words[$x] : ''; $_replace_str = $replace_str; if (strlen($replace_str)==1){ $_replace_str = str_pad($_replace_str, strlen($fix), $replace_str); } $str = preg_replace('/'.$fix.'/i', $_replace_str, $str); } return $str; }   $banned_sites = array('your', 'filter', 'words', 'here'''); $replacement_text = "banned-site"; $row['msgtext'] = ReplaceWords($row['msgtext'], $banned_sites, $replacement_text);
  4. So i signed up for the 5 days trail, all was ok and account was created, but it didn't gave me the nameservers, Any chance I could get to see that somewhere?
×
×
  • Create New...