-
Posts
119 -
Joined
-
Last visited
-
Days Won
1
Blinkuz last won the day on January 30 2021
Blinkuz had the most liked content!
About Blinkuz
- Birthday June 24
Profile Information
-
Gender
Male
-
Location
Dominican Republic
Profile Fields
-
My Project
Shinobi Tamashii Online
Recent Profile Visitors
2,797 profile views
Blinkuz's Achievements
-
Blinkuz reacted to a post in a topic: [Intersect] Middle Ages: Online *LIVE NOW!*
-
Blinkuz reacted to an answer to a question: How to add a button on main interface that leads to webpage
-
Blinkuz reacted to a post in a topic: Intersect CMS Unleashed [2.3]
-
Blinkuz reacted to a post in a topic: Playgame Tracker
-
Blinkuz reacted to a post in a topic: [FREE] Redeem Reward Code System!
-
Blinkuz reacted to a post in a topic: Heroes of Umbra 2D Platform hack/slash RPG [PLAYABLE]
-
Blinkuz reacted to a post in a topic: Intersect Tools
-
Blinkuz reacted to a post in a topic: Recovery Password (Free) using Gmail! (Tutorial)
-
Blinkuz started following Chat Log Status/Ideas? , Intersect CMS Unleashed [2.3] , Changing from 4 directions to 2 and 7 others
-
Blinkuz reacted to a post in a topic: Intersect CMS Unleashed [2.3]
-
Currently the input is handled in this file, it is not a solution directly but it will help you to understand a bit how the engine handles the inputs. https://github.com/AscensionGameDev/Intersect-Engine/blob/prerelease/Intersect.Client/Core/Input.cs
-
Hahaha I don't think this is the correct way to ask for features, much less I think you have understood what Intersect really is.
-
Deleting the character would definitely need to be done by source edit but if you want to do some actions when the player dies you have a common event trigger that runs on death, but anyway I don't think there is an event command that allows you to clean all the inventory, at least now I don't remember that there is something like that.
-
iLeGiTiMx reacted to an answer to a question: How to increase max spell count?
-
Change it in the server config, the server's config.json file is where you get the actual value from.
-
Here you can read a little about how the idea of warp for instances was raised: https://github.com/AscensionGameDev/Intersect-Engine/issues/1156
-
Moving player in mouse click direction
Blinkuz replied to Rodrigo Reis's question in Questions & Answers
The truth is that this has been a quite interesting implementation and more seeing that perhaps it can be extended to the skills system and be able to do effect skills with the mouse, what I do think is that this should be something configurable in the event that the programmers approve it, I encourage you to create the PR and continue with the discussion there and see the technical part regarding the code. If you are interested you can also enter the community discord and we can talk about the functionality and the main developers can give you their point of view. https://discord.gg/ggjwhrANtG -
Castiel reacted to an answer to a question: Diagonal walking
-
Here in the forum there is a patch for the source code that has that functionality but it is not compatible with the latest versions of the engine and needs minor adjustments, but I am currently working on an implementation based on the prerelease branch https://github.com/AscensionGameDev/Intersect-Engine/pull/1229 here you can see the code, currently it works in a basic way and some adjustments are needed to make it optional etc, if you want to leave the diagonal movement by default in your project then all the code that I have in this PR will work for you.
-
Weylon Santana reacted to an answer to a question: Block Function (Give your vote)
-
Block Function (Give your vote)
Blinkuz replied to Weylon Santana 's question in Questions & Answers
For my part, both points that you showed both the probability of blocking and the amount of damage blocked as well as the absorption of life when blocking seem perfect to me, honestly it would be a very good improvement for the combat of my game to have it working in this way way. -
Additional Frames Appearing When Casting
Blinkuz replied to Apache_'s question in Questions & Answers
I think I had this problem before, what I did was replicate one of the frames of the casting animation and it has been fixed temporarily although not as exact as I wanted. -
It was already implemented in version 7.x, here are the logs of these changes: https://github.com/AscensionGameDev/Intersect-Engine/issues/110 and https://github.com/AscensionGameDev/Intersect-Engine/issues/730 This was scaled to other processes such as guilds etc, here you can have a complete list: https://github.com/AscensionGameDev/Intersect-Engine/issues?q=is%3Aissue+chat+log+is%3Aclosed
-
Yes, but you have to take into account the resource updater, for example I can add a new tileset or sprite for the skills in my resources folder but if I don't share the resource the others won't be able to see it although when they download / update their projects they will be able to see it .
-
De todas formas continuando lo que menciono Arufonsu, con el empaquetador que viene por defecto en el motor es mas que suficiente, cuando haces el proceso se te creara una carpeta llamada packs dentro de resources, luego de ahí solo debes eliminar todos los otros recursos excepto fonts, gui, packs, shaders y updater, con eso debería ser suficiente para distribuir tu juego de forma segura.
-
Adding what Aru said in the last comment, it should be mentioned that although the sprite looks bigger, the collisions will continue to be the size of its tile, if its character is 64x64 and its floor 32x32 then the character will only receive damage / interact in the block of feet equivalent to 32x32
-
I see that everyone is mentioning that just by hiring different services I would have everything resolved and it is not like that, currently there is no way to share the same client for multiple servers and there is no synchronization of multiple servers in the database layer, I would have to create an external application that is in charge of writing / reading the data and that communicates with the different servers, or modify everything that is currently done in the engine's server which is something essential unless you have a lot of knowledge / money .