Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 04/03/21 in all areas

  1. The safest option will be to upload a new windows, so thank you for your help. In the future, I will be more careful about what I use and download.
    1 point
  2. Set account name instead nickname: addEventHandler('onPlayerLogin', root, function(_,account) setPlayerName(source, getAccountName(account)) end) Save account name on first server login and loading: addEventHandler('onPlayerLogin', root, function(_,account) local accName = getAccountData(account, 'savedName') if not accName then accName = getAccountName(account) setAccountData(account, 'savedName', accName) end setPlayerName(source, accName) end)
    1 point
×
×
  • Create New...