Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. function SCHEMA:OnCharCreated(client, character)
  2. local inventory = character:getInv()
  3.  
  4. if (inventory) then
  5. if (character:getFaction() == FACTION_RECRUIT) then
  6. inventory:add("radio", 1, {
  7. })
  8. elseif (self:isCombineFaction(character:getFaction())) then
  9. inventory:add("cid", 1)
  10. end
  11. end
  12. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement