Jump to content
MakeWebGames

NationGamer

Members
  • Posts

    60
  • Joined

  • Last visited

Everything posted by NationGamer

  1. yes it already does that all the messages and anything static is translated from my language class and dynamic content is google as i cant predict what players are going to type all that has already been implemented
  2. yes i know what he means but thats what i dont like multiple game servers never liked it as the game would still function exactly the same and the language translation would be the same as what ive got now except it is just on base url and people can just select the language and translate the main site to the language of their choice
  3.   at the moment i am using my own script to translate the base files everything static then dynamic content is currently translated by google all of my static stuff has been translated by people from them countries and yes i agree with dave google has a knack of miss translating stuff sometimes but all static stuff is accurate as i paid people to translate that stuff for me that speak them languages but i am still browsing around to see if i can find anything better than google translate for the dynamic parts and for the other servers i would never consider that option it is going to be 1 server only as i stated i really have a dislike for more than 1 server and if done correctly 1 server will suffice
  4. seriously i read this and this specific line i read a tutorial more like downloaded the source files from tuts+ and just changed the skull and smiles around very hard work their my 2 year old sister could do that ffs btw forgot the url http://activetuts.s3.amazonaws.com/tuts/381_html5AvoiderGameTutorial3/13/game.html stop taking work and doing nothing to it then calling it your own
  5. no offense but did you read the post right as i said it translates the whole game to a different language like say if an english user sends a mail to a german then it would translate text from english to german and so on and tbh im not a fan of multiple servers in games looks stupid and games only do it to try and keep members after server 1 has failed
  6. Well i have been working on a game for the last 2 years and finally close to finishing it but i was only posting this thread to see what all of you thought about a multilingual game well first of all the base game uses server side scripts to translate the game then parts that cannot be set like user posts etc uses google translate but all base game at the moment translates into English (GB/US) Chinese (Mandarin/Cantonese) Malaysian (Malay) Japaneses German Spanish French Italian Dutch i don't know if i need to add anymore as i picked mostly from the main languages, only reason i translated my game is to get more of a player base and actually enable people from other countries that can't read/write English to enjoy the game also.
  7. yh sure i will upload some just gotta hunt some game ones out as it better on here
  8. and yes i do design and bluetrendz they are total cowbows every game layout i have seen of theirs is the same layout with some images changed that is not a real design company everything you design especially for other people should be fully unique and bluetrendz are not and peter he is a excellent designer and he far surpasses bluetrendz by miles all of his work is unique to each game and high quality bluetrendz are pretty much trying to milk people with the same layout
  9. ok where here does it say you are setting up a hosting company it says totally the opposite you are offering very fast server speeds and 99% uptime how would you even know this if you dont even have the servers yet more like you have been caught out having fasthosts $15 reseller plan and just dont want to admit it and the only reason your selling hosting is so you get free hosting for your websites everyone know to run a game you pretty much need a decent VPS or a DEDI nothing less as the games use alot of resource e.g crons and also have alot of demand. P.S stop trying to edit posts there is something called google cache and this is how you post server specs if you forgot here is a template i made of my server specs.   My Server Specs: 8 x 3.5 GHz Intel Xeon CPU (4 Cores - 8 Threads) 16GB RAM 1 x 2TB HDD Operating System: CentOS 5.9 (64Bit) Control Panel: CPanel/WHM (WHM 11.38.1) and there you go just replace my values with your values saved you sometime or you can carry this on and just repost my server specs if you cant do that could i ask you one simple question how do you enable lets say PDO in WHM if your a server wizz
  10. if you read my post correctly i said old mafiadeath layout not the new one eg the layout silentmafia, mafiawarfare + many more copied The old layout was not SOS only the new one and may i just say aswell no one on this forum will or are in the same league as SOS some come very close like the person above me but apart from that but on the other hand bluetrendz i think most designers on this forum are better than them cowboys reselling the same layout over and over again with minor modification very nice design company (being sarcastic if you didnt notice) this layout of yours if a poor attempt of copying this the original and before anyone starts no it is not GRPG it is MR Whales EZRPG (Not EzRPG Either) as some people might get confused. http://images.bbgsite.com/games/images/2010/02/10/s_mafiadeath_3.jpg (image is small but you get the idea)
  11. i think it looks to much like the old mafia death landing page dont look unique
  12. replace $newsql with   $newsql = mysql_query("UPDATE `grpgusers` SET `claimed`='1', `points`=`points`+500, `bank`=`bank`+100000 WHERE `id='".$user_class->id."'");   like kyle said why would you need to put it in 3 lines just more unneeded code
  13. thanks Octarine but already solved the way i did it Detect the url host strip the tld from it then match it to the whitelist i used a quick function to do all that then it just an if statement to see if it matches if it does keep the original posted url and redirect to it
  14. sorry forgot to explain how i did it and in my opinion pretty good as ive checked for the domain host first then stripped it back to barebones to match the whitelist there for combating a_bertrand issuse so should be pretty secure in that way
  15.   yh but what happens if all moderators are offline its gonna be a free for all so a backup system will help with that as i have 8 staff altogether all from different timezones but still dont guarantee one of them will be on so posts could be sitting there for a couple of hours thats why i want an extra barrier   and ive figured it out now works good and also thanks a_bertrand that helped
  16. I only want this for Bbcode to stop advertising im building a white list instead of a black list much easier it is just for a redirection script so when user clicks link posted by other user in forum etc they are redirected to the other site but first going though this check dont use any db it a standalone and yes maybe a user could do what you say but it wont effect my site just an extra barrier for advertisers to get past and most of them are stupid so wont be that smart lol
  17. NationGamer

    Array Issue

    ok just to explain ive made an array of white listed websites and ive listed them without http:// or a TLD at the end just the name i have tried preg match to try this but cant get my head around it the thing i want to do is add a wildcard kind of statement that lets the url be accepted if it includes something in the array so here is what i have so far   ive shortened the code alot as it is a list   $whitelist = array( 'facebook', 'google');   $url = sanitize($_GET['iurl']); $url = $url; if (in_array($url, $whitelist)): ?> Please wait while you are redirected to <?php echo $url ?> <?php else: ?> Url has been blocked <? phpendif; ?>   i just need someway for like a wildcard to check the array and if something matches with the array that is passed then it lets the url be accepted   just to explain more if you didnt understand i want to accept any url that matches with the array so it recognizes all TLD's after the array   so for example if the user inputs google.com it will take it out the array and match the google part of it and accept it is in the white list and also will accept any subdomains owned by the domain in the array
  18. thanks for this sorted my problem out
  19. Hello i have a problem with jquery ive made a modification and uses jquery for posting data to the server and returns data to user side if successful but the problem im having on he page i have values and after i post data to the db with jquery the values on the page dont change how can i make them dynamically change Example: Username: Admin then say i change username to demo u have to refresh the page for the username to change so will be stuck saying admin when username is demo now is there anyway to dynamically update that value with jquery without refreshing the page thanks.
  20. hello i am having a problem displaying html symbols i have tried multiple things to get it working but at moment the only thing that is displaying is � things i have tried edited httpd.conf and added   AddDefaultCharset UTF-8   php.ini and added   default_charset = "utf-8"   and also added   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">   to my html template but none of the above work and the error symbol is still showing could some one please help and show me a way to solve this problem thanks
  21. yes thats what im saying it nothing to do with what u was saying it a table with exp from 1-750 in it with the exp needed no functions or databases used
  22. ok just to point out i know they come in GRPG but u have gone off subject this mod dont use them function this is an EXP GUIDE to show users what level gives u what exp nothing to do with what you just posted example level: 1 EXP: 1000 level: 2 EXP: 2000 it gives all users a full list of levels and exp for level within the game
  23. nope GRPG currently come with this you are talking about the modified GRPG engine that is either SM or APEX and all these modified ones all run from databases(s) also as it drags the level from a table called expguide with 1-500 + in it and ive made this mod that does not require database(s) it works out all exp and level strait from varibles within the file
  24. This mod is a exp guide for GRPG can be used for users or gang exp also a bonus this mod does not require any new classes or any new database table auto calculates the level/exp within the file Files Included: exp_guide.php   interested please feel free to give me a PM
  25. thanks spirit and yh i thought it might come in hand if staff want to reserve names quickly and can be adapted to do other things maybe blacklist words in game add some jax to auto udpdate words and be a good mod thanks
×
×
  • Create New...