Jump to content

zahlio

Member
  • Posts

    210
  • Joined

  • Last visited

Everything posted by zahlio

  1. Favorite thing must be that high resolution screen.. Im a unity game developer and i am in need of a new android testing phone
  2. The video is only running at 30 frames. Dont trust me? Right click and get the stat for nerds, you will then see it decodes 30 in about a second.
  3. That is wrong. Twitch uses more bandwidth (because it streams video) then facebook uses. Facebook still is in the top 3 of traffic in the world, and also in the US.
  4. I agree, i only use facebook to keep in contact with old class m8's.
  5. "1.28 billion monthly users" so yeah..
  6. Are you sure that your paths are correct? Also try using the Chrome inspect an element too see what is wrong. If the problem persists, either give us more code, or link the page (last option would be the best).
  7. Creating a game is usually fun. But what i like doing recently is creating Unity Assets. Its like creating a small part of a game, and then selling it. You can make some money on the side if you end up creating something nice.
  8. Hmm.. Long time since I've done assembly. However i think there is a instruction called LOOP or LOOPE, that loops while cx is either 0 or not (can't remember which one). Hope that helps. EDIT: Also i think the usage of cx to hold an value for the columns is bad practice?
  9. Im gonna quote some random dude over from the Unity Answers: Source: http://answers.unity3d.com/questions/19182/create-a-water-drop-simulation.html
  10. Botting is against almost any games TOS, and therefore also against the LTT's forum conduct. Hint-0: Took me 2 minutes of googling to find what you are looking for. It exists. Hint-1: The fact that you can't find it using google, tells me that you are far from making one yourself. However you could start by reading about DLL injections and the DirectX library. Hint-2: Playing the game the way it's meant to be played, is usually more fun.
  11. Please use the code tag Also, cleaning up your code might help (or make it more easy to find the error) public boolean isPoor(double housingCost, double foodCost){ return ((housingCost + (foodCost * size)) > (income / 2));} Also to find the error, using: System.out.println(someValue); helps alot. The problem with your define boolean isPoor; but also it in a method (public boolean isPoor()), simply call isPoor(par1, par2) when you want the result.
  12. Use c#, the syntax isn't really that different.
  13. Looks decent. But coding in java for a graphics engine.... Would recommend writing it in C. But just don't take my word for it, look here: http://stackoverflow.com/questions/1569559/c-vs-java-for-game-programming
  14. Not quite sure what you want? I think the most easy way is to create an emulation of what is going on. taking the raw military encrypted cyper psiko data from a jet could be hard. Creating an emulation using C# or java could be done in hours.
  15. Also would it not be better to save the stuff in a XML (using jDOM) or .properties file?
  16. this hurts my eyes: i += 1; i++;
  17. Use Unity and use C# in unity. Easy and fast.
  18. Yep, and x++; = x + 1; Read more here: http://java.about.com/b/2009/05/23/java-term-of-the-week-compound-assignment-operator.htm
  19. Sure, just read the textfield in someway and then have a set of cases to choose from. You can read more here: http://www.codeproject.com/Articles/12454/Developing-AI-chatbots
  20. Yep you can do that, should look something like: private string readConsole(String oldConsole){String c = textfield.tex.replace(oldConsole,""); // what has just been entered} The above code should be triggered every time say you press enter. You can then input that to the real console, read the reply and smack the reply into a log file or something.
  21. First of all, your CSS is awefull, might want to clean it up. Also its impossible to load the page here in Denmark. Also on some of the big websites i have coded on, the general rule was to avoid big .png files. Some other stuff i caught at first glance: - DON'T use: <center></center> as its not supported in HTML5. - Avoid using a loading script. Do it in the background. - It's good practice to keep all CSS in .css files. - Use jQuery from their CDN: <script src="//code.jquery.com/jquery-1.11.0.min.js"></script><script src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
  22. To be hornest then i think FPS (a twitch first person shooter) cannot be build on a web platform at the current time. Simple because performance and visual fidelity is to low, which are something this genre lives on.. This said it could be done, and it could be done great Comming from a guy developing an MMO FPS
  23. The thing here that i think is awesome is not the 240 hz, but the fact that its a VA panel. 120 hz (or simulated 240 hz) with great colors.. Make 1440p one and i buy it
  24. Please don't, the fact that you ask if you can do it or not, tells us that you are no where able of creating a new programming language Also why would you make a new language? What are the specific needs you have that you cant find in another language?
×