Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Stamina and Character Swap
- local playerName = player:getName()
- local hour = 19
- local characterList = {
- ["Trampekk"] = "Trampek",
- ["Trampek"] = "Trampek Maker",
- ["Trampek Maker"] = "Trampek Maker Two",
- ["Trampek Maker Two"] = "Trampekk",
- }
- if stamina() < hour*60 then
- if characterList[playerName] then
- local newCharacterName = characterList[playerName]
- relogOnCharacter(newCharacterName)
- print("Switching to " .. newCharacterName)
- end
- end
- return true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement