Skip to content
This repository has been archived by the owner on Oct 1, 2024. It is now read-only.

Commit

Permalink
Bug Fixes, View Fields
Browse files Browse the repository at this point in the history
  • Loading branch information
ic3w0lf22 committed Sep 7, 2021
1 parent 13f90e5 commit 317a204
Show file tree
Hide file tree
Showing 39 changed files with 764 additions and 143 deletions.
6 changes: 3 additions & 3 deletions RAMAccount.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ local WebserverSettings = {

local function GET(Method, Account, ...)
local Arguments = {...}
local Url, Body = 'http://localhost:' .. WebserverSettings.Port .. '/' .. Method .. '?Account=' .. Account
local Url = 'http://localhost:' .. WebserverSettings.Port .. '/' .. Method .. '?Account=' .. Account

for Index, Parameter in pairs(Arguments) do
Url = Url .. '&' .. Parameter
Expand All @@ -31,7 +31,7 @@ end

local function POST(Method, Account, Body, ...)
local Arguments = {...}
local Url, Body = 'http://localhost:' .. WebserverSettings.Port .. '/' .. Method .. '?Account=' .. Account
local Url = 'http://localhost:' .. WebserverSettings.Port .. '/' .. Method .. '?Account=' .. Account

for Index, Parameter in pairs(Arguments) do
Url = '&' .. Url .. Parameter
Expand Down Expand Up @@ -102,4 +102,4 @@ function Account:LaunchAccount(PlaceId, JobId, FollowUser, JoinVip) -- if you wa
return GET('LaunchAccount', self.Username, 'PlaceId=' .. PlaceId, JobId and ('JobId=' .. JobId), FollowUser and 'FollowUser=true', JoinVip and 'JoinVIP=true')
end

return Account
return Account, WebserverSettings
26 changes: 22 additions & 4 deletions RBX Alt Manager/AccountManager.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 317a204

Please sign in to comment.