Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Jumbofile

Members
  • Posts

    982
  • Joined

  • Last visited

Everything posted by Jumbofile

  1. 3d game worlds always look horrid when extremely zoomed out, just look at WoW for example. ![](http://www.ascensiongamedev.com/resources/filehost/a26bca9c0cad5f1999c45c5f4ec9f388.png)
  2. Wish I had the resources to make a 3d mmo, dont have the programming knowledge yet. Glad you didnt scrap this completely.
  3. ![](http://i.imgur.com/AV1x7ET.jpg) Better? Im not very good at photoshop…
  4. Skywyre primitive is the official engine. Download link is in this thread, http://www.freemmorpgmaker.com/thread-1.html Please try to make a thread with less anger (and vulgar language) if you want people to be willing to respond. Thanks, Jumbofile
  5. Ive been waiting for this
  6. Looks amazing! I always liked the 3d style, if pulled off right it can look pretty cool.
  7. CPU: AMD a10 6800k RAM: 16GBs Corsair (honestly dont know, going off my head) GPU: GTX 660 Superclocked edition HDD: 1TB Western Digital Black SSD: 256GB Samsung SSD Display: Acer A231h Keyboard: Razer Blackwidow Chrome Mouse: LG G600 MMO mouse OS: Windows 8.1
  8. Here is a sprite I have made. Im a little rusty so be nice :P ![](http://i.imgur.com/PrlFBTv.png) 2x ![](http://i.imgur.com/PrlFBTv.png) I desperately need help with the walking animation (4 frames) If someone can help it would be greatly appreciated.
  9. I really like blurite for some reason…... I honestly cant wait to play, looks amazing!
  10. Looks like you have a fair bit of work done with this. Nice to see something like this!
  11. Ive been learning c# so this is perfect!
  12. Worlds is much better than origins. Try to stay away from eclipse origins if you want stability and features.
  13. Jumbofile

    RPG Maker MV

    This looks pretty cool. I haven't used RPG Maker in a bit but I only have good memories.
  14. Thanks for the tip! After I learn a bit more I was planning to make a small text based rpg for more practice. Hopefully Ill start that tonight.
  15. Ive decided to learn C# after talking to some very helpful member here at eclipse and with the video series im watching ive made a Magic 8Ball! ![](http://i.imgur.com/wqu0URh.png) It has 4 different answers and was a good way to teach me how to do multiple things in C# and help me better understand the language. Download: https://www.dropbox.com/s/8bzif1lhmvzhrcm/Magic8ball%20Codegasm.exe?dl=0 (100% safe, some antivirus programs dont think so but I promise you it is) Source: ``` using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Threading; namespace Magic8ball_Codegasm { //abstract class Greg //{ // static string name = "Greg"; // public static string alias = "Jumbofile"; //} /// /// Entry point for magic 8ball program /// class Program { static void Main(string[] args) { //Preserve console text color ConsoleColor oldColor = Console.ForegroundColor; //Get Question Tellpeoplewhatprogramthisis(); //Create a random object Random randomObject = new Random(); //Loop forever! while(true) { string questionString = GetQuestion(); //Think about question int numberOfSecondsToSleep = randomObject.Next(5) + 1; Console.WriteLine("Thinking...."); Thread.Sleep(numberOfSecondsToSleep * 1000); //Checking response if(questionString.Length == 0) { Console.WriteLine("You have to write something to get an answer!"); continue; } //Check if user wants to quit if (questionString.ToLower() == "quit") { break; } //Check if user wants to be a loser if (questionString.ToLower() == "you suck") { Console.ForegroundColor = ConsoleColor.Red; Console.WriteLine("No you suck loser! Bye!"); break; } //Get Random Number int randomNumber = randomObject.Next(4); //Answer color Console.ForegroundColor = ConsoleColor.Yellow; //Use random number to determain response switch(randomNumber) { case 0: { Console.WriteLine("Yes!"); break; } case 1: { Console.WriteLine("No!"); break; } case 2: { Console.WriteLine("Hell no!"); break; } case 3: { Console.WriteLine("Why even ask? DUH!"); break; } } } //End of loop //Clean up Console.ForegroundColor = oldColor; } /// /// Prints name of program and who created it /// static void Tellpeoplewhatprogramthisis() { //Change console text color Console.ForegroundColor = ConsoleColor.Green; Console.Write("Magic 8ball by "); Console.ForegroundColor = ConsoleColor.Cyan; Console.WriteLine("Jumbofile"); } /// /// Returns Question from user /// static string GetQuestion() { //This block of code asks question and stores answer Console.ForegroundColor = ConsoleColor.White; Console.Write("Ask a question!: "); Console.ForegroundColor = ConsoleColor.Gray; string questionString = Console.ReadLine(); return questionString; } } } ```
  16. I like the mapping, looks very nice. Cant wait to try it!
  17. Ive always wondered if Nin was breaking some sort of copyright with naruto…. Okay so on topic, I like the trailer really makes me want to play.
  18. Its not whats better, its what do you prefer.
  19. Ok I understand what to do now, thanks!
×
×
  • Create New...