Garry's Mod Leaks

Full StarwarsRP Server Files

Submitted by defineyourfuture, , Thread ID: 113224

Thread Closed

RE: Full StarwarsRP Server Files

OP
#11
darkrp you can get right on github its an open source mod Tongue

RE: Full StarwarsRP Server Files

#12
wooooooooooooooooooooooooooooooooooooooooooooooooooooooow

RE: Full StarwarsRP Server Files

#13
Very good leak, but i think it has backdoor

RE: Full StarwarsRP Server Files

#14
starwars meme bruh meme bruh

RE: Full StarwarsRP Server Files

#15
lol swrp top tier gamemode

RE: Full StarwarsRP Server Files

This post was last modified: 26-05-2022, 09:43 AM by DaveF
#16
Code:
/*----------------------------------------------------------
VIP.
---------------------------------------------------------*/
local VIP = {

  //Staff groups
  "admin",
  
  // VIP Groups
  "vip",
  "vip2",
  "vip3"
}


TEAM_RANDOMJOB = DarkRP.createJob("Random Job", {
  color = Color(248,0,213),
  model = {"Random_model"},
  description = [[]],
  weapons = {"test1","test2"},
  command = "jobcommandamazing",
  salary = 5,
  admin = 0,
  max = 1,
  vote = false,
  hasLicense = false,
  candemote = false,
  category = "Category",
  PlayerLoadout = function(ply)
   ply:SetMaxHealth(200)
    ply:SetHealth(200)
    ply:SetWalkSpeed(200)
    ply:SetRunSpeed(300)
    ply:SetArmor(100)
    ply:SetMaxArmor(200)
  end,
  modelScale = 0.6,
  customCheck = function(ply)
    return (table.HasValue(VIP, ply:GetUserGroup()))
  end,
  CustomCheckFailMsg = "This job is for VIP only!",
})

As it was not in the files how you make vip jobs (as I don't think everyone got a whitelisting addon). Also if your modelScale = 0.6, does not work. Try the below

Code:
/*----------------------------------------------------------
VIP.
---------------------------------------------------------*/
local VIP = {

  //Staff groups
  "admin",

  // VIP Groups
  "vip",
  "vip2",
  "vip3"
}


TEAM_RANDOMJOB = DarkRP.createJob("Random Job", {
  color = Color(248,0,213),
  model = {"Random_model"},
  description = [[]],
  weapons = {"test1","test2"},
  command = "jobcommandamazing",
  salary = 5,
  admin = 0,
  max = 1,
  vote = false,
  hasLicense = false,
  candemote = false,
  category = "Category",
  PlayerLoadout = function(ply)
   ply:SetMaxHealth(200)
    ply:SetHealth(200)
    ply:SetWalkSpeed(200)
    ply:SetRunSpeed(300)
    ply:SetArmor(100)
    ply:SetMaxArmor(200)
    timer.Simple(0.1, function() ply:SetModelScale(0.6, 1) end)
  end,
  customCheck = function(ply)
    return (table.HasValue(VIP, ply:GetUserGroup()))
  end,
  CustomCheckFailMsg = "This job is for VIP only!",
})

RE: Full StarwarsRP Server Files

#17
Is this darkrp or another framework?

RE: Full StarwarsRP Server Files

This post was last modified: 17-09-2022, 11:57 AM by GalipGs
#18
I have a question, is it still working?

and what plugins can you use for that and i want to do swrp

Users browsing this thread: 2 Guest(s)