Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation on 08/09/19 in all areas

  1. 2 points
    Functor

    Nemo patcher

    @San @4144 This is a typo in the script file. Open ../Patches/AllowSpamSkills.qs and change: "3B D8" + // cmp ebx, ebx to: "3B DB" + // cmp ebx, ebx
  2. 1 point
    Hyvraine

    Botong-ui | FluxCP Theme

    View File Botong-ui | FluxCP Theme Hi! This is kind of my "sorry for appearing and disappearing, please accept my apology" beta release. It's not exactly a theme, there are changes to some of the library files as well as changes to the configuration files. Very minor, really. You can see all the changes here: https://github.com/marqroldan/FluxCP There are also fixes that support the changes to the structures of the tables, if I missed any please notify me. Note that this is currently for Hercules version of FluxCP and not compatible with rAthena's. This theme is based on Bootstrap 4 (so it still includes jQuery). It is responsive. What you see on the main page isn't something I created. It's just a random Bootstrap 4 template that I downloaded. That Bootstrap 4 Template Details: Theme Name: Rapid Theme URL: https://bootstrapmade.com/rapid-multipurpose-bootstrap-business-template/ Author: BootstrapMade.com License: https://bootstrapmade.com/license/ Video Preview: FAQ: Why is the file so big? Yeah normally it's less than 20MB but it's due to the inclusion of the item icons and thumbnails. Where are the images? You can get them from here: https://github.com/marqroldan/FluxCP/tree/dataImages or http://rathena.org/board/files/file/2509-item-images/ It's not working! Nani? Well it should be working fine (if you've installed all the necessary and required tables). Should you encounter any bugs or problems feel free to reply on this topic so I could patch it on the repo. Will you update your Stellar FluxCP skin? No. It will forever stay that way and will not provide any support. This Botong-ui theme however will be updated from time to time. How frequent is the update to this theme? Always check the repository for recent changes, not this forum's download section. For faster updates. How to change to another theme? Simple, open your browser's developer tools and go to the console and type: updatePreferredTheme("[themename]") where you replace the bold text to the name of the theme you want to switch to. Can I contribute? Of course! Just make a pull request on the repo Your repository is so messy. I have no valid excuse for this. I'm still learning how to properly use Git / version control system and would greatly appreciate it if you have tips. Thank you! Submitter Hyvraine Submitted 07/12/19 Category Web Resources  
  3. 1 point
    luizragna

    Custom Unit HP Bar System

    Hello guys, i'm making a custom hp bar system for mob units. The command show the HP of the mob for all players in the map. I am using the cutin command, the problem is that I do not think so many files are necessary. In the case 1 image for each percentage of hp I would like your opnion and help to improve this system and make it lighter. Test yourselves :). HP Bar System: payon,147,229,4 script Test#HPbar 1_F_MARIA,{ if (.HP_Bar == 0) { .HP_Bar = 1; .mobGID = monster ("payon",148,226,"[T] HP Test",POPORING,1,strnpcinfo(0)+"::OnDie"); setunitdata .mobGID,UDT_MAXHP,4000; setunitdata .mobGID,UDT_HP,4000; .@count = getunits(BL_PC, .@units, false, "payon"); for (.@i = 0; .@i < .@count; .@i++) addtimer(0,strnpcinfo(0)+"::OnHPBar", .@units[.@i]); } end; OnDie: .HP_Bar = 0; end; OnHPBar: .U_MAXHP = getunitdata (.mobGID,UDT_MAXHP); while (.HP_Bar != 0) { .U_HP = getunitdata (.mobGID,UDT_HP); .P_HP = (.U_HP*100)/.U_MAXHP; cutin(""+.P_HP+"", 1); sleep2 100; } cutin("0", 1); sleep2 5000; //Delay to hide HP Bar cutin("", 255); end; } Donwload of the data folder files: HP Bar System (2018-06-26).rar
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.