Advertisement
BananasTheKing

Gray Jedi Faction 1.0

Dec 20th, 2017
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. local FACTION = Clockwork.faction:New("Gray Jedi Order");
  2.  
  3. FACTION.useFullName = true;
  4. FACTION.whitelist = true;
  5. FACTION.canWieldLightsaber = true;
  6. FACTION.isDroidFriend = true;
  7. FACTION.ranks = {
  8. ["Pupil"] = {
  9. default = true,
  10. position = 4
  11. },
  12.  
  13. ["Adept"] = {
  14. position = 3
  15. },
  16.  
  17. ["Knight"] = {
  18. position = 2
  19. },
  20.  
  21. ["Paladin"] = {
  22. position = 1
  23. },
  24. };
  25.  
  26. FACTION.models = {
  27. female = {
  28. "models/cakez/dust/civilians/female/female_05.mdl",
  29. "models/cakez/dust/civilians/female/female_07.mdl",
  30. "models/cakez/dust/civilians/female/female_08.mdl"
  31.  
  32. },
  33. male = {
  34. "models/cakez/dust/civilians/male/male_10.mdl",
  35. "models/cakez/dust/civilians/male/male_11.mdl",
  36. "models/cakez/dust/civilians/male/male_12.mdl"
  37.  
  38. };
  39. };
  40.  
  41. FACTION_GRAYJEDI = FACTION:Register();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement