Jump to content
MakeWebGames

advocaite

Members
  • Posts

    27
  • Joined

  • Last visited

advocaite's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. If you really wanted to go with today's standards you could go zend2, synfony2 , yii2 or some other mature framework each with a nice learning curve some are steep. I would say Codeignighter too its most likely the easiest but there is issues with Ellis labs not continuing the project in hopes others will so it still has a lot of hope and its documentation is epic. also a good start is the concept and idea of game using normal paper is awesome for doing this. flow charts will help you with structure and organization once there and ready start coding it together.
  2. I have updated footer and will add a read-me of the license in bitbucket. This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License. So if you edit it fork it and share it other wise keep moving and dont bother...
  3. Well I have rights to do as I want with it as do others as there is no actual licensing for it. As for a clone that is not what it is its a full script just like the one cris sells he is not only one who got rights to it. So now its open source people can do what they want for it as for bad practices in code the repo will get updated so i wouldn't matter if you want to help msg me on bitbucket. ripping graphics i made the theme using bootstrap 3 as I was planing to make it more responsive to mobiles and the like. and the background image is totally mine i still have psd for it. I do expect other to theme it there own unique way but I'm sure people will just use the theme it has
  4. http://ww3.thecoldwars.net   login details test qwerty123
  5. a few ill fix them up on repo soon at least now everyone can get it free
  6. https://bitbucket.org/advo/kosgame/overview   enjoy it if you want to join development make this script beter hit me up on bitbucket https://bitbucket.org/advo/kosgame/overview
  7. I think I still have his email in my old gmail account not sure if he is actively developing the script anymore after it was hacked sorta went down drain I look into it and pm you it if i find it as i said all his old sites are now either down or no longer in his control. feel free to add me to skype can help you with any issue you have script wise..
  8. http://ww3.thecoldwars.net this is my version Im setting up atm .. Im fixing all the exploits in forum and account managment that cause the scipt to be hacked in first place. also the script used to be deviant war but that site got hacked and ended up loosing player base and then his site was hacked again and domain stolen and is nowpart of some phishing attempt. here is file system you should have if you have the real version not just the hacked version [ATTACH=CONFIG]1160[/ATTACH] just letting you know this script has had some illegal activity i got permision to use mine by the person who owned deviant war a few years back now. just thought id let you know
  9. nice work here is link to psd source and tutorial for anyone wanting to know how he done it http://supercolortuts.com/create-a-shiny-gold-star-coin-in-photoshop/
  10. I cant win with you Ive already stated that its being depreciated we know this, you said thats ok we can suppress those errors. The fact you even show a option to suppress them shows you yourself would do that or at least thats what your teaching others by setting it as an example, some newbie coder would think thats there fix and never learn and cry when there script dies. Also it's not just being depreciated it is being completely removed so yes those out of date website will stop working the day that happens unless they stay with older versions.Dose this make sence to you now.. I hope so.... Your opinion is yours, mine is mine when it come to becoming a industry standard I work in the industry so I like to think I know something about trends there is enough evidence to prove its becoming a industry standard in php to say it isnt or wont is just bull**** they said same thing about OOP and looky now most major frameworks and websites are OOP orentated, they even said that about MVC and look now so many frameworks use this model. so stop kidding your self please. also let me give you a example of why pdo and its driver ability is better, lets say you make a web game or online game with c++ and your using Microsoft SQL Server as database and you have a website and want to show of stats MySqli wont we able to connect to that db but PDO can this is another reason why PDO is the way to go there is many examples of why its better overall I don't want a argument and am not saying you should defenitly choose PDO im just saying that the majority will go with PDO. So I'm just gonna agree to disagree with you and that will be the end of it. unless you can give me something to prove otherwise.
  11. I see your reasoning... To be perfectly frank here this is bad form. You should not do this just cause it throws errors up suppressing errors notices dose not fix them. and how can you suppress fatal errors when its fully removed that is just a quick fix dose not solve anything. teaching people to do this is just bad plain bad. MySQLi is good for somethings but not for everything and it depends on situation. also you can be a gramma nazi all you like shows what a dick you actually are.not everyone is perfect at English Now my reasoning to PDO being the way forward is the fact its already becoming a industry standard, MySQLi is bound only to MySQL where as PDO can connect to many different databases as well as MySQL. So that in itself proves with out shadow of doubt that it better to use more flexible.(although this is not just my opinion there si many who think the same. Just cause its not the only option dose not mean it wont be the best option. the learning curve for MySQLi is not hard at all pretty much same as old MySQL PDO is harder to learn if your not a object orientated programmer. Once learned you start to see how much better it is and why, but again its personal preference. You can say what you like but PDO is the way to go as everyone will most likely use it in end as industry standard. For me to get a job it is also one of the basic requirements for working where I work, now and im guessing would be same in any company similar to the one i work at.
  12. If you want to team use bitbuket or git hub make a repo add developers to it that way you can be in total control developers can see what you have done you can see what they done make mistakes can easily revert them back to revision you want you can branch off and do other things then merge that branch with is master if you lthink its all good. also installing git on a vps mean you can pull dicrectly from your repo to your server saving having to ftp over and over
  13. Ummm mate im not saying you have to use all drivers at all but what dont you understand about depreciation all mysql_query mysql_fetch_array row etc etc will be removed from php making it that you must use the PDO classes built for php or move to mySQli.. this mean any game site that connects to a db unless on older version of php will have to use PDO eventually or mySQLi ethier way for those using ext/mysql will be screwed.. the reason i showed the drivers was to open up that PDO is and will become very versitile. and the drivers are only used like this let me show you some example   private function Connect() { $this->settings = parse_ini_file("connect.ini.php"); //BELOW IS WHERE DRIVER IS USED DEPENDING ON WHAT DB YOU NEED TO CONNECT TO $dsn = 'mysql:dbname='.$this->settings["dbname"].';host='.$this->settings["host"].''; try { // Read settings from INI file $this->pdo = new PDO($dsn, $this->settings["user"], $this->settings["password"]); // We can now log any exceptions on Fatal error. $this->pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); // Disable emulation of prepared statements, use REAL prepared statements instead. $this->pdo->setAttribute(PDO::ATTR_EMULATE_PREPARES, false); // Connection succeeded, set the boolean to true. $this->bConnected = true; } catch (PDOException $e) { echo $this->ExceptionLog($e->getMessage()); die(); } }
  14. its made from scratch with no framework
  15. its same script to a tee I check it just its missing all the things that didnt get hacked like the account portals ect ect a few things are missng but its not my issue its his as he has been ripped off I will show a full version when i get a new host or even skype ill show you somethings missing i may even just release it free see how that goes ;)
×
×
  • Create New...