Jump to content

Chigoo

Member
  • Content Count

    618
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by Chigoo

  1. I need some RPG Maker games to play for research purposes... All lets plays will be uploaded to my twitch and youtube channel. https://www.youtube.com/c/chigooX < - YOUTUBE https://www.twitch.tv/chigoo1 <- Twitch I prefer to play open-world games but all genres are welcomed! EP1: Coming soon!
  2. ALL ART WILL BE CHANGED ONCE THE CORE GAME IS COMPLETED! Game Progression Total: 42.14% Story(Main Quest): 25% Missions(Side quests): 1% Features: 25% Maps: 85% Database: 60% Music: 85% Lore: 20% The Map (WORK IN PROGRESS) GAMEPLAY Exploration: Explore the vast continent of Dawn haven, Clear caves, dungeons, forts, etc... Uncover mysteries and make your own adventure as you do so in an open 500 x 400 map. Fighting: Fight your enemies in real-time with hundreds of weapons, and 7 weapon types. You don't have to wait for your turn to come. Every encounter is dynamic and won't happen the same way twice. Crafting: Craft your own armors and weapons, and upgrade them to make them stronger. Mine ores, chop down trees for wood, fish for fish, harvest plants to make potions. Skills: There are 11 skills to master, and as you use your skills they will get better: Pickpocket, Lock picking, Cooking, Alchemy, Thievery, Blacksmithing, Speech, Mining, Fishing, Woodcutting, and Harvesting. Questing: Want to just play through the main quest? Fine do so, but you also have the option to not... If you want to just explore the world, do not fear there's plenty to do from side quests to other unconventional activities. Crime: Want to pretend to be a criminal? well if so this is the game for you. You can kill anyone you want, steal, pickpocket, trespass, and if you're caught by a guard you can resist arrest, and kill all the guards... Have a death warrant on your head? Well, you can go to another region where you're not a criminal, unless the region you're a criminal in reported you to the other regions, then the only option you have is to seek out The Thieves' Guild. Classes: Classes? Never heard of them. Want to be a warrior? sure, why not? Want to be a mage? sure, why not? Want to be a badass arcane warrior? Sure why not? Or do you just want to be a rogue, who knows magic, and carries around a sword, instead of a dagger? You can also do that. Faction: you have four choices to pick from, you can only be a member of one at a time. Your options are The Thieve's Guild, The Brotherhood Of Assassins (BOA), The Magi Sentinel, or The Knight's Guild. There are other smaller factions you can join at the same time as any of the bigger four. Books: Want to spend your time in a game reading? Who's stopping ya? There's a huge collection of books to read, written by the people of Edriones, past, and present. Reading will help you better understand the world you're in, the lore, the history, and the ways of the land. Pets: Raise your pets, feed, them, take care of them, and allow them to accompany you on your journey.. Race and gender: Are you a girl? Do you want to play as a girl? Are you a human? Do you want to play as an elf? You can play as any of the three races, and decide if you want to be male or female. You can also decide which hairstyle, and color you want (3 of each). We all like to look pretty! Lore: Rich lore that spans the entire timeline of the universe from beginning to current. Every inch of the game is connected and feels like you're visiting an actual world rather than just playing a game. MANY MORE THINGS TO COME TRAILERS Risks and challenges Hello, before anything I would like to let everyone know that I am currently working on this project solo and I do plan on finishing it by the end of 2017. there are still a lot of work left to do, things like finishing the main story mission as well as 100+ side missions and radiant quests, which includes faction quests WATCH ME MAKE THE GAME! Let's Make An Open World RPG DawnHaven - YouTube CREDITS
  3. Chigoo

    DawnHaven [Skyrim in VXA]

    The Map of Dawn Haven!
  4. Chigoo

    DawnHaven [Skyrim in VXA]

    thank you will be updating the game soon!
  5. Hey, I'm currently using a script which just points to a x,y location on the map. But I want to be able to use it in a more complex way. The script is only able to point to a location on the current map you're on. I want it to be able to point to a location a different map. How it should/might work: Events used as doors/transfers can be tagged with a exit door tag to read their location(x , y) this is used for caves and in door maps Events used as doors/transfers can be tagged with a specific door tag to read their location(x , y) this is used for world maps, towns, open areas. if the player is on the same map as location then script works normally if the player is on a map with only 1 exit and its not the same map as location then the location will be set to the exit if the player is on a map like a town where there's no exits then the script will look for a specific door tag to use that as the location script call will be like 3,4,6,"tag" (mapid, x, y, specific tag) calling this again should overwrite the old call (so if i was going to the market then changing it to the blacksmith will then lead me to the black smith) so scenarios: you are in a house and you get a quest to go to the market the script will set final destination to (*market map*, 33, 20) (map, x, y) user will assign which specific tag is used for the current final destination the script will then scan for a tag on the events if it reads exit tag (which it will since we're in a house) then it will set temporary destination to the location of the exit tag. the player then follows the compass the the exit the next map is the town where there should be no exit tags, the the script will then scan for the specific tag that matches the one the user assigned for final destination and set temporary destination to the location of the exit tag finally the player walking in the door of the market now the script sees its now on the same map the final destination and then works normal. So basically how the compass works in skyrim where if you're inside but the quest is in a different map it will show that. there can also be indication changes to let the player know if they are on a different map. I would love to thank you for read though to this far and really apricate the facts you are interested in helping. The Script In Question:
  6. AWESOME stuff man. keep up the good work. for me I mainly just need the move speed. I also have to figure out how to make the player dismount when in combat since i'm using an ABS or make the player at least take damage. Sorry to hear about your shoulder, please get better!
  7. Chigoo

    DawnHaven [Skyrim in VXA]

    New Game Play! Mounts Quests and Dragons Part of the 0.05c update!
  8. Awesome will update, I also wanted to know if there was a way to change movespeed on the fly, if you see my video I have different mount and I want to be able to make some faster than others. Look what I did so far
  9. Same issue, and i'm testing on a blank project. edit looking at the original game_vehicle script @walking_anime dosen't seem to do anything.... Once stepping animation is off no animation is played at all Also of the get_on def it only runs when player gets on the vehicle so i figred i needed to add @step_anime = moving? somewhere where the vehicle updates all the time. edit2 with trial and error I figured out to add it to def sync_with_player I just added @step_anime = moving? which fixes the issue i'm having. I did remove your script, but now I'm gonna add it in again and see if it's still solved or if I have to change something So i tried to add this to your script but it didn't work as i wanted. but the whole system works if I change the original game_vehicles script. . def sync_with_player @step_anime = moving? end maybe i have to alias or something but thats beyond me EDIT FINAL alias :ed5_sync :sync_with_player def sync_with_player ed5_sync @step_anime = moving? end figured it out! Add that to the end of your script before the last end # class Game_Vehicle
  10. Chigoo

    [18+] Renryuu: Ascension

    This looks really interesting... I might have to play it to take notes lol.
  11. Chigoo

    Jack's Revenge -A Wild West RPG-

    cool game! keep up the good work!
  12. Chigoo

    DawnHaven [Skyrim in VXA]

    Change log link: https://www.patreon.com/posts/dawn-haven-demo-56002167 Dawn Haven Demo V0.05B -Added new NPCs -Added Fast travel from map (Must visit location once before) -New enemies -Added shops to Summer Fell, and Lounge Port -Started The Khriss main story Quest (Incomplete) -Bug fixes -Performance improved in open world Things Changing in next version -NPCs for High Fire, Grove Town, Koi Town, Kaizen (Shop keepers too) -Replacing old crafting system -Adding more enemies and Boss class enemies -Others....
  13. Chigoo

    DawnHaven [Skyrim in VXA]

    The Wait is over! The Game is available now! Join my patron to play : https://www.patreon.com/chigoox
  14. hello, I wanted to see if you can help me with one of your scripts.

  15. Hello I'm using the Peral ABS for my game, and for some reason when ever i equip weapon or amor using the quick tool, the items are duplicated. I'm hoping someone is willing to help me resolve this issue. Thank you in advance. edit* When using the quick tool every time i equip a wep or arm it stays in the inventory side, so i can keep equipping new versions of that items so for example if i equip a short sword, a new graphic noting that i equipped it will appear on the tool bar, but the original short sword still shows up on the inventory side. so when i selet the short sword again from the inventory side it will let me equip the short sword again and again. Here are the scripts that might be casing this issue. Custom DataManager Perfect Equip Refine System Falcao Pearl ABS Liquid v3
  16. Chigoo

    Items duplicating when equip.

    I kind of figured out a work around but I can script so I don't quite get how to do it. It seems that when using the quick selection tool to equip items duplicates the item. So what I want to do is is to make it so that instead of there being 4 commands for weapon, armor, item, and skills there will only be 3. equipment, items, and skill. Equipment will just take me to the regular equipment screen. I figuref out how to remove one of the commands and rename one to equiment. But I dont know how to make it so when you select equipment it will take you to the main screen. here's the script. it starts around here. Quick tool se3lection engine line : 497
  17. Chigoo

    New Streamer Looking For Games!

    oh ok thank you.
  18. Chigoo

    New Streamer Looking For Games!

    I have a game for you, just give me 1-2 months
  19. Chigoo

    DawnHaven [Skyrim in VXA]

    For thoese still waiting..... Thank you! I have a gift coming soon...
  20. Chigoo

    How To Make An Open World RPG

    How To Make An Open-World RPG *Required items* rpg maker MV | Alpha ABS| Everything else is optional and will be linked when used in the videos THE GAME WE WILL BE MAKING Welcome To The Island Of Hearth Story It was 10 decades ago when the portal opened and from it evil so old, that only old and ancient magic forgotten to the world can defeat It. Many have fallen to this great new threat. Adventures from all over the world have come to hearth looking for fame and glory. But in the end. Only them who has protected Hearth for a 1000 years can protect it yet again. From evil old or new they shall fall by their blades. Your family has protected all of hearth for centuries Now is no acceptation. Defeat the evil. This new evil can only be defeated with the Eye of Gore find and retrieve it. Then free the land once again. But do not fear for even if you fall, your Ancestor will take your place. About Open-world dungeon-crawling Zelda like Skyrim type RPG. Classes Noob -Starting off like everyone else Adventure – You’ve earned the right to venture through the dungeons. Warrior -You fancy a strong fighter · WarKnight – A warrior like no other in battle and war Magi – You dabble in the Arcane arts · WarMage – You use your learning to devastate any battlefield Thief – You don’t fight like the others but you get it done. · WarNinja – Using the shadows now one can see you coming in battle features Open-world Explore the exciting Island of Hearth, discover the hidden mystery of the dungeons and the ancient evil. Crafting Craft potions, armor, and weapons. The best gears can only be crafted. RPG Progression! The more you use an action the better it comes. You can train different weapon types, armor, and skills. You can also add stat points as you level up! Action Battle system No waiting for turns, plunge yourself straight into the heat of battle. Visible Gear See what your character is wearing. Endless loot! Tones of loot from weapons to potions, spells, and other valuable items. Mini-Games Enjoy many mini-games from the casino in town to the other random game across the map. Guilds Four guilds to join, and rank up in with exclusive gear and benefits for joining. Time Progression Things happen as time pass. SETTING UP THE WORLD LETS MAKE AN OPEN WORLD RPG DEARHEART EP 0 LETS MAKE AN OPEN WORLD RPG DEARHEART EP 1 LETS MAKE AN OPEN WORLD RPG DEARHEART EP 2 LETS MAKE AN OPEN WORLD RPG DEARHEART EP3 WATCH ME MAKE THE GAME!
  21. Chigoo

    How To Make An Open World RPG

    new ep out! check it out any and all feedbacks is welcomed!
  22. Chigoo

    Dear Hearth

    Welcome To The Island Of Hearth Story It was 10 decades ago when the portal opened and from it evil so old, that only old and ancient magic forgotten to the world can defeat It. Many have fallen to this great new threat. Adventures from all over the world have come to hearth looking for fame and glory. But in the end. Only them who has protected Hearth for a 1000 years can protect it yet again. From evil old or new they shall fall by their blades. Your family has protected all of hearth for centuries Now is no acceptation. Defeat the evil. This new evil can only be defeated with the Eye of Gore find and retrieve it. Then free the land once again. But do not fear for even if you fall, your Ancestor will take your place. About Open-world dungeon-crawling Zelda like Skyrim type RPG. Classes Noob -Starting off like everyone else Adventure – You’ve earned the right to venture through the dungeons. Warrior -You fancy a strong fighter · WarKnight – A warrior like no other in battle and war Magi – You dabble in the Arcane arts · WarMage – You use your learning to devastate any battlefield Thief – You don’t fight like the others but you get it done. · WarNinja – Using the shadows now one can see you coming in battle features Open-world Explore the exciting Island of Hearth, discover the hidden mystery of the dungeons and the ancient evil. Crafting Craft potions, armor, and weapons. The best gears can only be crafted. RPG Progression! The more you use an action the better it comes. You can train different weapon types, armor, and skills. You can also add stat points as you level up! Action Battle system No waiting for turns, plunge yourself straight into the heat of battle. Visible Gear See what your character is wearing. Endless loot! Tones of loot from weapons to potions, spells, and other valuable items. Mini-Games Enjoy many mini-games from the casino in town to the other random game across the map. Guilds Four guilds to join, and rank up in with exclusive gear and benefits for joining. Time Progression Things happen as time pass. CREDITS: SRD Engine Alpha ABS YEP Engine Hime works Galv MORE TO ADD! WATCH ME MAKE THE GAME!
  23. This New Series Will Go Over The Basic/Advanced Functions Of RPG Maker MV! Today I will be starting my new video tutorial series on MV, well you might ask yourself, or me why I'm I doing this where there are other tutorials around. Well it's simple most of those tutorials are not for, ACE, VX, XP etc... These tutorials will focus on both old and new features of MV. The other reason for these videos is, that I'v noticed ever since MV came out a lot of new makers have been showing up with no prior knowledge of RPG Makers, so this tutorial will mainly be for those group of Individuals. After this tutorial you should be ready to make your first game and beyond. After we cover the basics and advance stuff we will be moving on to plugins. Stay tuned. Tutorial Playlist - RPG Maker MV RPG Maker MV Video Tutorial EP 1: Introduction RPG Maker MV Video Tutorial EP 2: Interface RPG Maker MV Video Tutorial EP 3: Maps and Regions RPG Maker MV Video Tutorial EP 4: Events PT 1 Alpha ABS Tutorial Playlist - Alpha ABS Tutorials RPG Maker MV Alpha ABS Tutorial EP1: Installation and configuration RPG Maker MV Alpha ABS Tutorial EP2:Skills Items and Weapon Overview RPG Maker MV Alpha ABS Tutorial EP3: Skill Setup RPG Maker MV Alpha ABS Tutorial EP4: Weapon Setup RPG Maker MV Alpha ABS Tutorial EP5: Item Setup RPG Maker MV Housing system Tutorial snippet - Snippets So far i will be covering all these topics, but i know there's a lot missing from the list , that's where you guys come in, if you want me to do a tutorial on something, post it here, pm me, or leave me a message on YouTube and I'll add it to the list.
×
Top ArrowTop Arrow Highlighted