I am going to write in Spanish because in English I cannot find the words: Gracias Ryi, por lo que haces, por el tiempo que le dedicas y la facilidad que tenes para explicar todo en detalle. No sabes todo lo que me has ayudado en esta pasion que encontre! Gracias Totales!
@garrison48252 жыл бұрын
wow you are still continuing this, love the work sir. I am on the placing object episode but ive encountered some errors and will try to fix it in a more convenient and relaxed time and hopefully i will soon catch up with the new episodes. Thank you Ryi for providing these tutorials for us
@Mypremiumacct3 ай бұрын
ive been waiting to get to this video and while work was super tiring, i had just enough time to follow this. Thank you again and cant wait for the breaking objects one. Ill check out if you happen to code a farming deal like Stardew but thats something ive been wanting to learn as well after finishing this playlist
@giancarlorodriguez45652 жыл бұрын
Hey I wanted to thank you for this series. It has been very helpful and you're very good at teaching how to do everything. I have a question though, can you make a video on how to make the screen darker to restrict visibility like you did in the farewell 2021 video. Thanks Ryi!
@RyiSnow2 жыл бұрын
We'll handle that when we create a dungeon level!
@woodswoody55532 жыл бұрын
@@RyiSnow awesome I had problems with creating a new level (dungeon) or inside a home so that it loads a new map
@cabircoskun57724 ай бұрын
did you handle those problems ? i am going through the same problems
@darktimes5742 жыл бұрын
THANKS YOU FOR THE VIDEO!!! I was waiting for this one 😆🥳
@kikismine2 жыл бұрын
What the hack, why you uploading videos so fast!! I like it!! Thanks RyiSnow
@Locras2 жыл бұрын
good as always
@qbusman38912 жыл бұрын
Grate work mate! I have a question, what shortcut do you use, to zip all methods in class? i cant find it in internet
Hey RyiSnow ik ive asked already but could you make a tutorial on doorways to other parts of the map i.e. houses caves dense forests etc
@Merkuse2 жыл бұрын
Hello Ryi. It is any way to fix that glitch: If we pick up coin spawned by aSetter then kill monster then activate aSetter.setObject() it will delete monster drop and spawn coin. (aSetter overrides monsterDrop[i] with previously pickuped coin) I asking because if keep adding more mechanics then that overriding can cause a serious exploit, dupe, etc. Sorry for bad grammar, I am bad at speaking english
@RyiSnow2 жыл бұрын
I think we only need to call the setObject method when we start a new game so I thought it won't be a problem though?
@Merkuse2 жыл бұрын
@@RyiSnow What if add another method that will respawn hearts and mana crystals only. And activate that method along side with setMonster(). Because... If monsters respawned (and player probably will lose life and mana fighting them) why not give player opportunity to restore some hp and mana? By the way great tutorials Ryi. You motivated me cuz I saw your old videos and what patience and hard work can do!
@drefter4 Жыл бұрын
Hello! I think I have find some bug in Blue Boy Adventure. When have level up so I have many hearts and take red potion or pick up red heart it sometime dosn't give more health or more red hearts. Thank you
@kikismine2 жыл бұрын
You can make: if the player isn't in radius 5-10 tiles, then the slimes cannot shoot.
@vampsz15922 жыл бұрын
Just check before the slime shoots if the player is in this range and then prevent it. To calculate the distance just do xd = Math.abs(playerX - worldX) the same with y and then distance = Math.max(dx, dy);
@ganbarimasu94462 жыл бұрын
Hi, are you palling to add a marketplace or trader npc where one can buy stuff with coins? And, as always thanks for the video
@RyiSnow2 жыл бұрын
Yes, we will add a merchant NPC in the near future. That's what those coins for!
@ganbarimasu94462 жыл бұрын
@@RyiSnow Thanks for the fast answer. Also, I want to implement a quest system. Are you going to make a video about it. If you won't could you give me some hints so I can try coding it myself :)
@RyiSnow2 жыл бұрын
Which part about the quest you don't understand?
@ganbarimasu94462 жыл бұрын
@@RyiSnow I am planning to create an 'int quest' value for the player. And I'll create quests like 'int quest_killSlimes = 1' and many other quests. There are two confusing parts. 1- How can I make the npc ask yes/no question about the quest and accept or decline it. 2- While current quest is slimeKill quest, I'll probably need an if statement like if(quest == quest_killSlimes){ "Here I'll check if the killed moster is a slime and add to slimeKill counter I'll create for this quest."} and with one more if statment in it, I'll check if the requirement is met. The problem is I don't know where to type this if statement. Should I do it in GamePanel or Player class or in a different class? Thanks beforehand
@RyiSnow2 жыл бұрын
1. You can use a similar method to what we did when we created the title screen. We'll make this yes and no options when we create a merchant NPC. 2. Basically anywhere is fine but if I were you I wouldn't do that in neither GamePanel of Player class because handling quests is not their roll. You can create a quest class or if you get the quest from an npc, you can also handle it in the npc class.
@woodswoody55532 жыл бұрын
Hey is there any way you could show how to organize inventory (player can sort through and change slots of anything in inventory as preferred)
@Clipaholick2 жыл бұрын
loved this!!!
@vampsz15922 жыл бұрын
Hello Ryi, how would you implement knockback? Do have any tips for me?
@RyiSnow2 жыл бұрын
When you hit a monster, lock its action for 10 frames or so, increase its speed and let it move to the direction that the player is facing. Also make sure to check collision along the way otherwise the monster can get stuck in a solid tile.
@vampsz15922 жыл бұрын
@@RyiSnow Thanks a lot!!
@MrLoser-ks2xn2 жыл бұрын
Thanks!
@Locras2 жыл бұрын
How can I stop the projectiles from the trees?
@RyiSnow2 жыл бұрын
You can add a projectile collision parameter to tiles and check the collision in the CollisionChecker.
@iliata54892 жыл бұрын
Hi you give me source code of you game ? I want a start
@mamapuci2 жыл бұрын
Go go go
@MrLoser-ks2xn Жыл бұрын
🥰🥰🥰
@jgames61722 жыл бұрын
God
@RandomHandle-r2q2 жыл бұрын
This is awesome! Is there a way to make it so that the chest's drop items like the monster's do?