XraySpigot

Untitled

Jul 7th, 2017
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. I am trying to create a RPG server using 'heroes plugin'. Heroes plugin uses custom attributes these are :
  2. strength
  3. constitution
  4. endurance
  5. dexterity
  6. intellect
  7. wisdom
  8. charisma(edited)
  9. I would like to be able to add these to a plugin called RPG items, this plugin allows you to create items with custom attributes and skills. I would like to be able to add the attributes from the heroes plugin on items, by using the RPGitems plugin ( I asked the creator of RPG items if it was oke to create a custom plugin hooking in the existing one and he was ok with it (can show proof if neccesary).
  10.  
  11. The way you create items in the RPGitems ingame is like this (example):
  12.  
  13. /rpgitem power_sniper create
  14. /rpgitem power_sniper damage 15
  15. /rpgitem power_sniper power rangedonly
  16. /rpgitem power_sniper durability 100
  17. /rpgitem power_sniper durability togglebar
  18. /rpgitem power_sniper defaultdurability 10
  19. /rpgitem power_sniper durabilitybound 5 100
  20. /rpgitem power_sniper power projectile snowball 0
  21. /rpgitem power_sniper set projectile 1 speed 5
  22. /rpgitem power_sniper set projectile 1 gravity false
  23. /rpgitem power_sniper set projectile 1 consumption 40
  24. /rpgitem power_sniper power potiontick 0 slowness
  25. /rpgitem power_sniper set potiontick 1 consumption -1
  26.  
  27. You can also edit this in the config file( I don't care where to add the attributes), but basicly I want to be able to add the 7 attributes to a weapon or a gear piece. I also want to be able to add a level requirement to a item (using the heroes level). The attributes and level requirement I add in the config (or ingame with commands, config is probably easier) need to show up on the weapon/gear piece ingame.
Advertisement
Add Comment
Please, Sign In to add comment