[RPG/MECH] mcMMO v1.2.07 - RPG Addiction Redefined! Multi-Lingual! [1337][1549]

Discussion in 'Inactive/Unsupported Plugins' started by nossr50, Feb 5, 2011.

Thread Status:
Not open for further replies.
  1. Offline

    nossr50

  2. Offline

    dragoon_103

    could you be more specific aka what plugins you have version of bukkit and idk a server log

    did you put the permission node - mcmmo.party
    in for the group you are trying it out on or no?

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Jul 18, 2016
  3. Offline

    Hydrosis

    Everyones' stats on my server keeps resetting :(
    I'm using flatfile, if that helps.
     
  4. Offline

    dragoon_103

    are you sure you are stopping the server correctly if so then maybe you have a conflicting plugin
    P.S. im going to sleep now
     
  5. Offline

    Avous

    @nossr50

    I have the bar and icon disabled but i still see it in game.
     
  6. Offline

    nossr50

    Are they making parties with ':' in the name? If so tell them to stop until mcMMO updates.

    I'll check this out..
     
  7. Offline

    Yahtze

    Can anyone confirm the Stability of this and Permissions 4 ? The new Permissions
     
  8. Offline

    nossr50

    If its anything like Permissions 3.1.6 I'd stay away, I highly recommend PermissionsEx to anyone looking for those who don't like superperms.
     
  9. Offline

    Malific

    [Request]
    I have the plugin Naturally Spawning Giants, and I've supped up the giants stats to really high levels. to the point it's nearly impossible to take one down single handed in open combat. I also configured them to drop very nice loot so whenever one spawns everyone in the immediate area party ups and to take it down. Truly awesome battles on occasion.

    My point being... Weapon skills don't seem to increase when fighting them... any chance this can be added?
     
  10. Offline

    Ranzear

    PermissionsBukkit works fine if you have SuperPermsBridge and put all mcMMO permissions behind a SuperPermBridge. supernode (yes, 'perm' non-plural, bugs me too...).

    You can do this with a lot of perms 3.0 plugins to make them work with PermissionsBukkit. If any stay a little bitchy its either because
    1. They actually support and are detecting PermissionsBukkit and you should remove the bridge supernode.
    2. Your SuperPermsBridge.jar needs to be opened up and the verson in plugin.yml bumped up for 3.1.5 or so, because 2.0 permissons don't actually seem to bridge correctly and it's reporting itself as 2.7.7 to plugins that adapt between both...
     
  11. Offline

    NinjaGrinch

    @Ranzear

    You do not need the bridge for mcMMO. :)
     
  12. Offline

    Ranzear

    Still applicable to a lot of plugins though.
     
  13. Offline

    NinjaGrinch

    Agreed but didn't want people to think this needed the bridge.
     
  14. Offline

    Hydrosis

    No, I'm using a different party system. I disabled the mcmmo party commands.
     
  15. Offline

    ruzco

    hello! Awesome plugin!! although our HUD is not working. it shows the XP bar outline but no symbol or Xp meter or whatever. and as far as i saw there is no HP bar on the upper left corner of the screen. do you know what we can do?

    I found out why (i think) it loads for some time when you just logged in, but it then says in the log:
    20:35:27 [SEVERE] Player: ruzco was not properly updated during login!
     
  16. Offline

    powback

    Its a great plugin, however:
    its pretty useless.
    You should make blocks break faster when you level up in mining.
    You get my idea
     
  17. Offline

    Madness

    They break insanely fast when you activate super breaker.
     
  18. Offline

    RustyDagger

    @nossr50 i was playing today and noticed the ghast's do not grant any exp for the archery skill they should give the most exp out of any mob because that are down right hard to hit.
     
  19. Offline

    Cedar

    I think skill capes should be added a bit like levelcraft?
     
  20. Offline

    Spathizilla

    There is an issue with worldguard pvp deny regions that lets you gain xp without any risks. I made a fix in a fork and posted the issue to github.
     
  21. Offline

    Stephen92

    Me and a few other servers I have contect with are runnin 1060 and we always try and get mcmmo after a new update, but its always crashin our servers, I dont understand why.
     
  22. Offline

    Ratchet

    @nossr50

    what is the formula for HP regen and could we have an option to configure it in future versions?
     
  23. Offline

    Madness

    I'm getting the answer, but I'm gonna blackmail you for it, choose one:
    1) I can tell you the answer, but you will then go to the wiki and edit this section http://mcmmo.wikia.com/wiki/Experience_Points#Power_Level to include said information.
    2) You can wait until I finish editing every other page with a higher priority until I get to that and I eventually add that info as well.

    What will it be? :p
     
  24. Offline

    1hacker

    The old formula was very flexible, I had thought it through before suggesting it. The only reason I didn't suggest a config value for the 100, was because I wanted 100xp to be level 1.

    That formula is not correct, it is not the way the code works.

    Please don't assume I need to be taught math.

    Not correct, the most important change, which has ruined the leveling flexibility, is that you have removed the configurable multiplier from the formula and replaced it with a constant (20). This has the effect of going back to the original formula, before the change I suggested.

    It worked very well before, when XP.Formula.Multiplier.* was set to a large number. Quick leveling to begin with, and slower leveling at higher levels. There was nothing random or inadvertant about my suggestion.

    I could have suggested something like:
    Code:
    XP.Formula.Base + squareroot(CurrentLevel) * CurrentLevel * XP.Formula.Multiplier.Mining * XP.Formula.Multiplier.Global
    
    Which would make the leveling curve more logaritmic. The reason I didn't, was because the formula is run every time a player gains XP, and the more complicated the formuula, the more load on the server.

    I beg to differ. For one thing Experience.Formula.Multiplier.Mining is used in the XP gain code and not in the XpToLevel formula, as one would expect from the name. It is also not a multiplier anymore, it is a divisor. Before it was very clear, what it was used for, now it's not.
    Also, in regard to mining, excavation, woodcutting and herbalism, I could change the XP gain numbers and didn't need a multiplier. (And still don't)

    That is 1/2 of what I suggested, and would be more elegant than hardcoding the numbers. btw, changing the 1020 wouldn't make it more logaritmic, it would still be linear.

    Please, let me have the opportunity to decide what is best for my server by making the formula adjustable, like this:
    Code:
    Experience.Formula.Base + CurrentLevel * Experience.Formula.Multiplier.Global
    
    Or maybe the more logaritmic one I suggested above, unless it is going to lag the server.
     
  25. Offline

    Tarrker

    @nossr50

    I had posted a couple pages ago about a problem we're having with MCMMO on our server and never got a response, so here it is again. Archery doesn't level up at all and we don't get any kind of xp bars or anything. All anyone gets in my server is the little drop down notification when you level up a skill. Not sure if this is how it is supposed to be or not? I'm running Craft Bukkit 1060. Somebody plz let me know if there's a fix for this.
     
  26. Offline

    nossr50

    Here, send me your server IP in a PM, I want to see this.
     
  27. Offline

    Tarrker

    lol damn, sorry. I didn't realize you'd updated the plugin. Everything seems to work just fine now. Thanks so much for responding tho. The whole thing is just pure amazing! My wife and I are especially fond of the level up sound ^_^
     
  28. Offline

    mutiny

    <3
     
  29. Offline

    Sherryberry

    Does this plugin support PermissionsBukkit?

    If so, I am having a slight issue. I did not include the abilities as permissions nodes, but for some reason we can still use all of the abilities. I even tried adding all of the abilities with a ": false" after them, but no go.

    I am also using the Superperms bridge.
     
  30. Offline

    linaslt

    Hello, I got a little problem running mcmmo, permissions 3.1.6 and 1060 bukkit. This plugin stopped adding new players, when a new player joins my server he/she cant use mcmmo skills. I tried everything, adding all permission nodes, making person admin. Nothing helped. Maybe any of you have a solution for my problem?
     
  31. Offline

    EMOberger

    Would it be possible for you to have an HP bar above every players head? even if they are not in your party.
     
Thread Status:
Not open for further replies.

Share This Page