Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- database.lua
- local accounts={
- {
- id = 1,
- username = "Kodos"
- },
- {
- id = 2,
- username = "Admiral_Morketh"
- }
- }
- local passwords={
- {
- id = 1,
- pwhash = "pretendimahash"
- },
- {
- id = 2,
- pwhash = "iamalsoahash"
- }
- }
- return accounts, passwords
- -- program.lua
- local accounts, passwords = dofile("database.lua")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement