Jump to content

Tio Akima

Members
  • Posts

    191
  • Joined

  • Last visited

  • Days Won

    21

Everything posted by Tio Akima

  1. What is the limit of polygons in a model? Is there a limit of polygons per map? I have 3 models with 60k polygons each ... And the client is not working (client 2019) it crashes when trying to display the models. I used the proOptmize modifier, but it still didn't work. Are there any other customer restrictions regarding 3D models other than polygons?
  2. Hi guys, I am trying to do a passive skill, similar to the passive of armor "Guardian Angel" (from league of legends) Btw I don't know if it's possible The idea is: (when the player dies) the ALL_RESURRECTION skill on the player would be used (the skill would have a 5 minute of cowdown). If the player dies while the ability is in cowdown, the skill to revive is not used. But I don't know if it's possible - as for example, is it possible to cast the ability when the player is dead? - Is it possible to put cowndown (delay) on a passive skill? Does anyone have any idea how I can do this?
  3. Hi ... I've finished a series of maps recently, inspired by a horror story theme. The main map is a modern city, freely inspired by Raccon City (RE) with classic places such as the famous Mansion of RE1 and also the raccon city police station. A map made for RO, but the idea was to remove all the medieval elements, to maintain a modern aesthetic, to approach our present world. The second map is MANSION (freely inspired) This map has 4 floors (two extremely large 2 floors (150x150), 1 small floor and basement. The maps are well detailed and with the possibility to compose a series of quest's and events. There are many possibilities. It can be used as an instance, as main city, map for events (such as zombie invazion, undead, savior, vips events, hunter), quests, etc. just be creative. Tell me your opinion, maybe you can help me improve. Thank you. ps: The police department is not ready yet.***** (Some images to better illustrate) THE CITY Now some images of the Mansion with 4 floors I like it when the maps are well filled, with no empty spaces, and with many details, something that suggests that there is life there, with dirt and trash on the floor, etc ... 01F and 02F 03F and basement
  4. hi guys How can I prevent the player from using two (or more) equal cards in the same item? I've tried isequippedcnt, but it does not work. Maybe it is better (easier) to put this condition in source. Has anyone tried something like this, and can you point the way?
  5. Anyone know how to set height of @clouds?
  6. I have a question about modeling Custom model. Can an object of a custom model have more than one mapped texture? I mean, can I apply Multi/Sub-Object to an object? When I convert from 3ds to rsm, the Brow does not accept the Multi/Sub-Object, so there are several bugs in the texture. I can only convert without bugs, when an object has a unique texture .. Unique texture per object. I believe there is a loss of configuration during the conversion of the 3DS to RSW model.. I do not know .. Or perhaps Brow himself does not accept this mapping, Some settings appear to be advanced for the Brow, such as the 3dmax particle system. I wish I could use Multi / Sub-Object to make more complex models.
  7. thanks hahahaa yes, I agree, it would be nice to change the interface too. oh yeess... really... the colors and the scaling of size really makes you feel submersed in the environment. I like filled maps, with few empty spaces .... It gets cozy. The color palette at the same temperature ....
  8. Bonjour! I finished another map of the Gaia Series, totally customized, and with that touch of fantasy. The Enchanted Village! The idea of this map is to be the main city of the Gaia project, an idealized instance created by TioAkima, where there will be PVP, dungeons, fiefdoms, items, NPCs, Mobs, VIP Room, etc ... All this theme. (Below are some prints and video of the Map) One more touch of fantasy of TioAkima ... VIDEO SHOWING THE MAP MORE DETAIL LOOK THE MOVIE! Leets'rooock For those who have not seen yet, the PVP with the same theme, Look the video! LOOK THE MOVIE! GO! Leets'plaaaaaaaay guys This is GAIA PVP End! Thanks
  9. Maps in Arena format "The Sacred Blood" (O sangue Sacro) Hii Guys, New maps in arena format, no obstacle in the arena, focused strictly on pvp (beating vs beating) ... This is the right map for you to decide who is the grandmaster in the best x1 style. Sacred or Blood? "Choose your side, release your essence, and come to the fight!"
  10. I follow with my doubt, if someone knows and can help, I thank
  11. Sorry for my ignorance, but how would that solve my question posted upstairs? ?
  12. Hi guys Does anyone know the link to download rA with tortoise svn checkout? I do not want to use git ... I tried the link: https://github.com/rathena/rathena https://github.com/rathena/rathena.git but it downloads all other folders in the repository. I also tried using: https://github.com/rathena/rathena/trunk but it downloads an old emulator about 3 years ago ... I wanted to download only the MASTER folder. I tried that way too: https://github.com/rathena/rathena/tree/master but it did not work
  13. Thanks for comment Kasumy (Obrigado Kasumy )
  14. Oh .. I'm grateful for your comment. I'm a big fan of your work. thank you.
  15. Summoner's Rift in Ragnarok Online (map created by Tio Akima) Hi Guys, I'm passing to expose my new map (recently completed) to RO! This is a map inspired by summoner's rift (map of the game of League of Legends). The design follows the same pattern, but with the poetic freedom (or poetic limitation ?!) available within RO! I will post some pictures here of the map and a video to be able to see better. It is! Att, Tio Akima. ScreenShots: more: Green Base: Red Base: Video:
  16. hi guys what is the best method to convert an rsm model to 3ds? I saw the Olrox video, but the video is very old. thanks ?
  17. But if I call the skill using mob data, the skill damage will not be based on the player's build .. or am I mistaken? If so, it will not do me any good.
  18. oh .. how sad ... so I guess my problem has no solution Secret What I'm trying to do is this. See if you can help me: In skill.c I did an area skill. This skill summon a mob. I sumono a mob and make him walk (I shoot this mob in one direction) with unit-> walktoxy (); That is, because of the unit-> walktoxy (), this mob will go through the functions: unit-> walktoxy (); unit-> walktoxy_sub (); unit-> walktoxy_timer (); right? When this mob dies (or stops walking) I want to call a skill ... skill Lord of Vermilion (WZ_VERMILION) The function that defines whether the mob has stopped walking is unit-> walktoxy_timer (); So, I need to call the skill (WZ_VERMILION) inside the function unit-> walktoxy_timer (); But for this skill to work, I need the data from the player. The information that arrives to unit-> walktoxy_timer (); are data from the MOB that walked and stopped ... The skill (WZ_VERMILION) will only work, if I call it with player data. This is a way of doing a skillshot ... Throwing the mob in one direction, and when it hits an enemy, an area skill is invoked. It sounds complicated, but it's a simple logic up to it. If you can help me, I'll be very grateful. <3
  19. Hi guys, in map.c I want to create a basic function a function that returns the player ID, without parameters only with return ID from the player. If anyone knows Something like this: int map_get_id() { struct map_session_data* sd; sd = map->id2sd(?); return sd->bl.id; } OBS: It does not have to be exactly in map.c but must be a function that returns the player ID Can someone help me?
  20. Hello, I added a two-handed sword and put it for all classes to use. However, ASPD falls to zero when equipping the sword. Only the swordman class and superiors who use normal. Why does it happen..? In what part of the SRC is the class weapons defined? I want to release the use of two-handed swords for everyone without this ASPD error a second doubt: What is the best ID to add custom item? From which id? (which does not conflict with other items)
  21. Have you tried this link? maybe it will help. https://www.robrowser.com/getting-started
  22. Yes, thanks for the tip .. it worked perfectly. #Solved
×
×
  • Create New...