Jump to content

Mystery

Community Contributors
  • Content Count

    2635
  • Joined

  • Last visited

  • Days Won

    88

Posts posted by Mystery


  1. Hey everyone! I think the default theme of the FluxCP needs some sprucing up.... so here is my sort of take on it. The theme revolves around using Hercules and its colours. Check it out for yourself:

     

    Screen Shot 2017-03-03 at 8.00.27 PM.png

    Screen Shot 2017-03-03 at 8.14.47 PM.png

    Screen Shot 2017-03-03 at 8.00.19 PM.png

    Screen Shot 2017-03-03 at 8.00.10 PM.png

    Screen Shot 2017-03-03 at 8.14.24 PM.png

    Screen Shot 2017-03-03 at 9.27.48 PM.png

     

     

    Features:

    • Mobile Responsive
    • Hercules Theme
    • FontAwesome
    • RSS Fed News
    • Status Checkers
    • Player Counts

     

    Popup Login & Login Page

    Screen Shot 2017-03-04 at 12.08.58 PM.png

    Screen Shot 2017-03-04 at 12.04.41 PM.png

     

    Logged-in Header

    Screen Shot 2017-03-04 at 12.04.54 PM.png

     

     

    Please keep in mind that this theme isn't your average FluxCP theme. Also please note that the theme is not done... tons of more work to do still!

     

    This will eventually be uploaded into the repo where members can help make PRs to fix anything / add anything into the theme.


  2. According to what i am reading it caps only the Damage to the HP.

    The second question was Damage to SP.

     

    So from what i understand this won't help me in this case.

    That was my mistake. I edited ;P That wasn't what I wanted to put haha. Using this mapflag: "adjust_skill_damage PA_PRESSURE 200" will increase the skill damage ;P. My apologies. I personally haven't used the zone with Pal's Pressure. Not 100% sure it will affect the amount drained. If it doesn't then I believe it will need a source edit.

  3. Lets try something else:

     

    this is my current pressure SP damage:    

     

    case PA_PRESSURE:

            status_percent_damage(src, bl, 0,5*skilllv, false);

     

     

    and Hercules:

     

    case PA_PRESSURE:

     

           status_percent_damage(src, bl, 0, 15+5*skill_lv, false);

     

    How do i edit it using HPM?

     

     

    Once i will understand how the HPM works it will be much easier for me (i have too many source edits i couldn't upgrade my eathena [still at 2010 version]  :blush:

    Why do you want to change the source for or add a plugin for changing the damage output of Paladin's pressure? Use the map_zone conf when you switch to Hercules.

     

    I already gave you the example above using : "adjust_skill_damage PA_PRESSURE 200"

     

    You just want to increase the damage of the skill? Correct? You can also read this to learn more: http://herc.ws/board/topic/302-introducing-hercules-map-zone-database/


  4. Em, okay well lets put it this way. If you scroll down... you'll notice the part that says

    /* PvP zone is applied to all maps with a pvp mapflag */

    name: "PvP" /* changing this name requires MAP_ZONE_PVP_NAME to also be changed in src/map/map.h file */

     

    In this zone, if you add the bonus damage to the skill under here, the skill's damage will only be increased in every map that has the pvp mapflag. So, it would look like so:

    	/* PvP zone is applied to all maps with a pvp mapflag */
    	name: "PvP" /* changing this name requires MAP_ZONE_PVP_NAME to also be changed in src/map/map.h file */
    
    	disabled_skills: {
    		BS_GREED: "PLAYER"
    		CG_HERMODE: "PLAYER"
    	}
    
    	disabled_items: {
    		Greed_Scroll: true
    	}
    
    	mapflags: (
    		"nocashshop",
                    "adjust_skill_damage    HT_LANDMINE 200",
    	)
    
    So of course, change HT_LANDMINE to the Pressure skill.

  5. February Digest 2017

    The following digest covers the month of February 1st - February 28th 2017

     

     
    Team Changes

    • hemagx has been moved to Former Core Developer from Core Developer
    • Ragno has been moved to Community Contributor
    • Frost has been moved to Script Developer from Former Script Developer (welcome back!)

     

     

    Development Highlights

     

     

    Scripting Highlights

     

     

    February Statistics

    • During the period there were 19 Commits.
    • 10 Commits from Pull Requests with 3 Bugs* fixed from merged issues.

     

    *Please note: Bug fixes are counted as references to issues; it does not include bugs that have been fixed without issue reference. The number of commits includes those that were merged.


  6. January Digest 2017

    The following digest covers the month of January 1st - January 31st 2016

     

     
    Team Changes

    • None

     

    Development Highlights

     

    Database Highlights

     

    Scripting Highlights

     

    January Statistics

    • During the period there were 25 Commits.
    • 9 Commits from Pull Requests with 0 Bug(s)* fixed from merged issues.

     

    *Please note: Bug fixes are counted as references to issues; it does not include bugs that have been fixed without issue reference.


    December Digest 2016

    The following digest covers the month of December 1st - December 31st 2016

     

     
    Team Changes

    • None

     

    Development Highlights

     

    Scripting Highlights

     

    December Statistics

    • During the period there were 18 Commits.
    • 5 Commits from Pull Requests with 0 Bug(s)* fixed from merged issues.

     

    *Please note: Bug fixes are counted as references to issues; it does not include bugs that have been fixed without issue reference.


  7. Thank you so much Mysterious perfect.

    okay its not what i meant on the whole,

     

    what i would like to do is have a main navigation top of the page i have that with the default flux menus but what i would like is home downloads, about etc ie

     

    <ul>
    <li><a href="<?php something goes here?>">Home</a></li>
    <li><a href="<?php something goes here?>">About</a></li>
    <li><a href="<?php something goes here?>">downloads</a></li>
    <li><a href="<?php something goes here?>">etc</a></li>
    </ul>
    
    

    i dont understand PHP code, so any help with this will be appreaciated

     

    Kind regards

    So then what you want to do is use this code:

     

     

    <?php echo $this->url(''); ?>
     

     

     

    Basically:

    • Home URL - <?php echo $this->url(''); ?>
    • Downloads - <?php echo $this->url('downloads'); ?>
    • etc.

     

    Keep in mind the name of your module goes in between the ' '. 


  8. Remove the drop down classes and just have

     

                                <?php foreach ($menus as $menuItem): ?>
                                    <li>
                                        <a href="<?php echo $menuItem['url'] ?>"><?php echo htmlspecialchars(Flux::message($menuItem['name'])) ?></a>
                                    </li>
                                <?php endforeach ?>

     

     

    So that it's like this:

    						<?php if (!empty($menus)): ?>
    							<?php foreach ($menus as $menuItem):  ?>
    								<li>
    									<a href="<?php echo $menuItem['url'] ?>"><?php echo htmlspecialchars(Flux::message($menuItem['name'])) ?></a>
    								</li>
    							<?php endforeach ?>
    						<?php endif ?>
    

    Basically removes the category's title and just adds the category links without the dropdown. 


  9. anyone help me how to add forums on fluxcp ?

    Essentially.... you can. If there was some sort of add-on forum option for Flux, it would make it a lot easier. However, since I doubt there is one, the only alternative route is to go about integrating a forum into flux if you have the knowledge and skills. 


  10. Dear all,

     

    Since to post under "employment" takes quite a considerable amount of time for the topic to be shown, I'm wondering if anyone here could update these two plugins by AnnieRuru to the latest Herc Compatible version. I don't mind paying for the work done.

     

    PM me... Thanks!

     

    I do apologize for that. It is currently up now :) 


  11. As suggested already, go with non-reseller hostings such as OVH/Limestone/etc. It will be a harder learning curve, but there are plenty of guides for it and you'll have much more control over your server.

     

    I would have to agree with this. I personally wouldn't use "Ragnarok-Based" hosters. I've had in the past when I did have a server, and the experience was never adequate (i.e. Frantech when that was still up). I then ran a server not using a "ragnarok-based" one, and well, there sure was a learning curve... especially if you're used to having things setup for you. I can only say, really, if you're okay with not having much control over your server, have things already setup for you, and pretty much given to you, then sure go with the resellers. 

×
×
  • Create New...

Important Information

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