Advertisement
IcarusCoding

Untitled

May 25th, 2018
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.29 KB | None | 0 0
  1. -- What's the title of the menu frame?
  2. Icarus.cs.config.menuTitle = "Icarus Crypto"
  3. -- How often should it check for price changes? In seconds
  4. Icarus.cs.config.coinRefresh = 60
  5. -- Chat commands to open. If you don't want this just remove all chat commands.
  6. Icarus.cs.config.chatCommands = {
  7.   "!stocks", "/stocks", "!crypto", "/crypto"
  8. }
  9. -- How many coins should it fetch? The more the longer the load time.
  10. Icarus.cs.config.amountOfCoins = 100
  11.  
  12. -- What currency should currencies be listed in?
  13. -- Options:
  14. -- DarkRP
  15. -- Pointshop 2 Standard
  16. Icarus.cs.config.currency = "DarkRP"
  17. -- Show alternate price?
  18. -- This only works for Pointshop 2 and makes the "*price* Points" into "*price* PTS"
  19. Icarus.cs.config.showAlternatePrice = true
  20.  
  21. -- NPC settings
  22. -- NPCs are spawned by spawning the NPC in through a chat command only superadmins can use!
  23. -- Chat command: !spawncrypto
  24. -- NPC model?
  25. Icarus.cs.config.npcModel = "models/Humans/Group01/Female_02.mdl"
  26. -- NPC name?
  27. Icarus.cs.config.npcName = "Cryptocurrency market"
  28.  
  29. -- What language?
  30. -- Languages you can choose by default:
  31. -- English
  32. -- Danish
  33. -- French
  34. ----------
  35. -- More languages can be added by adding a .lua file to /languages/
  36. -- Please look how it's done in English for reference.
  37. Icarus.cs.language:setActiveLanguage("English")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement