ZLevelsRemastered

Moved

Total Downloads: 41,383 - First Release: Nov 15, 2015 - Last Update: Jul 22, 2018

5/5, 127 likes
  1. I mean the plugin code, so the actual plugin file you download edit that in notpad++ and look for where is says about the names
     
  2. Hey, I'm just wondering if you'd be able to add in more skills (such as Archery or Swordsmanship) which would work the same?
    Just a suggestion as i think it would be cool!
     
  3. It has been asked before but not answered, level up increases 20% which is too much, I changed the points per hit which helped but 20% per level is too much, how to make it 5%??, the ResourcePerLevelMuliplyer says 2.0 is this the place to change it? and if 2.0 is 20% what would 5% be?
     
  4. 0.5 maybe but only a guess have not changed or messed about with it myself
     
  5. How do you turn off lose XP on death?
     
  6. Hi, is there some way to configure to show /topskills to all on server lets say each 15-20 mins? or is there some command that can be used via "TimedExecute" to call it and print to all players - maybe same like plugin "Rank-Me" haves that it shows certaint ranks each 15 mins
     
  7. Crafting level does not work. why?
     
  8. it does? what settings do you use?
     
  9. Hello, possible to have a French version ? i can translate word for you dev
    "Woodcutting" ==> "Coupage de bois"
    "Mining" ==> "Minage"
    "Skinning" ==> "Depecage"
    "Crafting" ==> "Craftage"

    "Level up" ==> "Niveau superieur"
    and more ....
     
  10. I think you can open the Plugin file and change that yourself ;)
     
  11. translate the config yourself
     
  12. Hello , can you give me the sql table for your plugin, I was not able to create it manually.
    Spent 2 hours on the table and nothing came of it (((
     
  13. overview
     
  14. sorry , can you give instructions for creating the table or the table itself , I did everything as was written in description but still not out what the problem is can not understand.
     
  15. You run the sql query that is on the overview
     
  16. All done and I have it doesn't work , Here is the result of the export table
    Code:
    SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
    SET time_zone = "+00:00";/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
    /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
    /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
    /*!40101 SET NAMES utf8 */;--
    -- База данных: `hurtrust_rust`
    ---- ----------------------------------------------------------
    -- Структура таблицы `RPG_USER`
    --CREATE TABLE IF NOT EXISTS `RPG_USER` (
      `UserID` bigint(20) NOT NULL,
      `Name` varchar(50) DEFAULT NULL,
      `WCLevel` int(11) DEFAULT NULL,
      `WCPoints` bigint(20) DEFAULT NULL,
      `MLevel` int(11) DEFAULT NULL,
      `MPoints` bigint(20) DEFAULT NULL,
      `SLevel` int(11) DEFAULT NULL,
      `SPoints` bigint(20) DEFAULT NULL,
      `CLevel` int(11) DEFAULT NULL,
      `CPoints` bigint(20) DEFAULT NULL,
      `LastDeath` int(11) DEFAULT NULL,
      `LastLoginDate` int(11) DEFAULT NULL,
      `XPMultiplier` int(11) NOT NULL DEFAULT '100',
      PRIMARY KEY (`UserID`),
      UNIQUE KEY `UserID_UNIQUE` (`UserID`),
    ) ENGINE=InnoDB DEFAULT CHARSET=latin1_bin;--
    -- Дамп данных таблицы `RPG_USER`
    --INSERT INTO `RPG_USER` (`UserID`, `Name`, `WCLevel`, `WCPoints`, `MLevel`, `MPoints`, `SLevel`, `SPoints`, `CLevel`, `CPoints`, `LastDeath`, `LastLoginDate`, `XPMultiplier`) VALUES
    (0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 100);/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
    /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
    /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
     
    Last edited by a moderator: Feb 29, 2016
  17. Code:
    CREATE TABLE `RPG_User` (
      `UserID` bigint(20) NOT NULL,
      `Name` varchar(50) DEFAULT NULL,
      `WCLevel` int(11) DEFAULT NULL,
      `WCPoints` bigint(20) DEFAULT NULL,
      `MLevel` int(11) DEFAULT NULL,
      `MPoints` bigint(20) DEFAULT NULL,
      `SLevel` int(11) DEFAULT NULL,
      `SPoints` bigint(20) DEFAULT NULL,
      `CLevel` int(11) DEFAULT NULL,
      `CPoints` bigint(20) DEFAULT NULL,
      `LastDeath` int(11) DEFAULT NULL,
      `LastLoginDate` int(11) DEFAULT NULL,
      `XPMultiplier` int(11) NOT NULL DEFAULT '100',
      PRIMARY KEY (`UserID`),
      UNIQUE KEY `UserID_UNIQUE` (`UserID`)
    ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
    What does not work as it looks like you made the table
     
    Last edited by a moderator: Feb 29, 2016
  18. If you have Crafting set to instant then it won't work, disable anything that changes your crafting speed and reload all plugins. Should work fine then.
     
  19. How i can change position bras? the upper left corner or something?
     
  20. In CFG there is possition i think, you neeed to play with the coords, maybe look on other plugins like InfoPanel, or Hunt-RPG or something that has GUI or menu or what ever that uses coords on screen ;)