
Justn
Super Contributor-
Posts
136 -
Joined
-
Last visited
-
Days Won
10
Justn last won the day on June 12 2024
Justn had the most liked content!
Recent Profile Visitors
7,070 profile views
Justn's Achievements
-
Justn reacted to a post in a topic: [ PT-BR / EN ] Create "Walk" / Universal LPC Spritesheet Generator
-
Justn reacted to a post in a topic: Zelda Minish Cap + Custom MC style for Intersect
-
Justn reacted to a post in a topic: Pixel Realms Assets [Sneak Peak]
-
Justn reacted to an answer to a question: House System (Intersect)
-
Justn reacted to a post in a topic: [Client, Server] Discord Rich Presence Plugin
-
Possibly try upgrading to one of the older 0.7.2 updates first? befor during 0.8 seems like you did it correctly following this https://docs.freemmorpgmaker.com/en-US/upgrade/upgrading/
-
Justn reacted to a post in a topic: COMING NOTHORIAN ONLINE IN MARCH 2025 [STEAM]
-
Justn reacted to a post in a topic: Today I did this on my project...
-
New feature added but you would need to compile the single player version separate: Pandacoder — 11/22/2023 11:32 AM It's a separate project in the solution You use the usual client/editor/server setup to develop and playtest your game, then you have to copy the server's gamedb into the singleplayer's server-resources directory and copy your client (can be packed) resources into client-resources
-
Vio reacted to an answer to a question: Camera follow
-
Justn reacted to a post in a topic: Today I did this on my project...
-
ZACKY reacted to a post in a topic: Simple Fish Animation
-
Justn reacted to a post in a topic: [Intersect] Middle Ages: Online *LIVE NOW!*
-
EspectroW reacted to a post in a topic: Simple Fish Animation
-
Justn reacted to a post in a topic: [Intersect] Middle Ages: Online *LIVE NOW!*
-
Count as high as you can while staff are sleeping!!!
Justn replied to Giligis's topic in Forum Games
7 -
Doors, Gates, and NPC Passage. Am I doing it wrong?
Justn replied to Ogreleg's question in Questions & Answers
How are you wanting players to open the doors? self switches work great for simple open/close doors. I can show you how to set them up if needed. Edit: Oh I see what you mean now. My npcs will not pass over door events as well but players can just fine. hmm wonder if this is intentional or a bug. -
Skit reacted to a post in a topic: Character hair customization (+ basics for expansion)
-
Count as high as you can while staff are sleeping!!!
Justn replied to Giligis's topic in Forum Games
5 -
Count as high as you can while staff are sleeping!!!
Justn replied to Giligis's topic in Forum Games
3 -
Rodrigo Reis reacted to an answer to a question: Moving player in mouse click direction
-
Moving player in mouse click direction
Justn replied to Rodrigo Reis's question in Questions & Answers
Yea I have been looking into something like this. I remember JC saying on a twitch that the true click to move he did for Ambard was kind of complicated because of AI changes (I think). If we never see anything like that in the engine it would be nice for something like this. Slightly off topic, but it would be cool to see things like you did here added in as plugins. -
I would not do this. They currently have actual instancing being worked on in the dev branch of the engine. I would wait for that. I tested it out this week and works very well so far. Currently has Player, party and guild instances.
-
For those sets you will want to make sure you set your tile width and height to 48 in the servers config file. Also set the # of sprite animations in that file as well. any of the really large buildings (if there are any) i would suggest splitting them up into a couple of smaller images with photoshop or something. for the ground I would use the decals to create a seamless tileset to use as a base layer (multiple of 48). An example of what i did for the ground is created modular pieces of ground cover and decals. Also did the same for hills and such in photoshop As Smoot mentioned 8 direction movement helps it all feel better while playing. If you have issues with building/cars/trees getting cut off in the editor just edit the canvas sizes of those images to be a multiple of 48. Doable and looks nice but using these takes a lot of tweaking when you run into an issue. *I would also add a couple new map layers for the ground*
-
hi I have experience using all of his resources and can help. What sets are planning to use?
-
relentlesspoetry started following Justn
-
Alexoune001 reacted to an answer to a question: Motion actions
-
jcsnider reacted to an answer to a question: Motion actions
-
Yes. Add the following to the end of your sprite name files "_idle" =not moving "_attack" = unarmed attack "_weapon" = attack with weapon "_shoot" = projectiles "_cast" = using a spell example: Spritename.png = Normal walking Spritename_idle.png Spritename_weapon.png explained more here
-
I ended up adding checkboxes to the item editor to specify which weapon type I was using. You can then check out the Client>Entites> Enity.cs and find "UpdateSpriteAnimation" and add some checks to display whatever animation you want for that weapon type. I did this to add new animations but you could just add the checks to the current ones listed. I would just play around with it. To add the checkboxes search for every thing listed for the "TwoHand" checkbox and copy it for the new weapon types you want. Example: I added polearms and two handed weapon animations if (AnimatedTextures[SpriteAnimations.Weapon] != null && !item.TwoHanded && Globals.IsInteracting != true) { SpriteAnimation = SpriteAnimations.Weapon; } if (AnimatedTextures[SpriteAnimations.Shoot] != null && item.ProjectileId != Guid.Empty && !item.Polearms && Globals.IsInteracting != true) { SpriteAnimation = SpriteAnimations.Shoot; } if (AnimatedTextures[SpriteAnimations.WeaponTwoHand] != null && item.TwoHanded && !item.Polearms && Globals.IsInteracting != true) { SpriteAnimation = SpriteAnimations.WeaponTwoHand; } if (AnimatedTextures[SpriteAnimations.WeaponPolearm] != null && item.Polearms && Globals.IsInteracting != true) { SpriteAnimation = SpriteAnimations.WeaponPolearm; } }
-
You can do this with common events and player variables. I don't use the default respawn locations (from class editor) at all.
-
Alexoune001 reacted to a post in a topic: Character hair customization (+ basics for expansion)
-
Same issue I am having
-
Count as high as you can while staff are sleeping!!!
Justn replied to Giligis's topic in Forum Games
hi @Worldofjimmy 2