SERVER EXPORTS

Set Verification (By Source)

Sets the verification badge level for a specific player's Qwuaker account using their Server ID (Source).

local success = exports["17mov_Phone"]:Qwuaker_SetVerificationBySrc(src, level)

Returns:

  • boolean: true if the operation was successful.

Argument
Type
Optional
Explanation

src

number

โŒ

The player's server ID (source).

level

number

โŒ

Verification level: 0 (None), 1 (Verified), 2 (Business), 3 (Gov).

Set Verification (By Number)

Sets the verification badge level for a specific player's Qwuaker account using their phone number.

local success = exports["17mov_Phone"]:Qwuaker_SetVerificationByNumber(number, level)

Returns:

  • boolean: true if the operation was successful.

Argument
Type
Optional
Explanation

number

number

โŒ

The player's phone number.

level

number

โŒ

Verification level: 0 (None), 1 (Verified), 2 (Business), 3 (Gov).

Get Verification (By Source)

Retrieves the current verification level of a player's Qwuaker account using their Server ID (Source).

Returns:

  • number | nil: The current verification level (0-3), or nil if the user was not found.

Argument
Type
Optional
Explanation

src

number

โŒ

The player's server ID (source).

Get Verification (By Number)

Retrieves the current verification level of a player's Qwuaker account using their phone number.

Returns:

  • number | nil: The current verification level (0-3), or nil if the user was not found.

Argument
Type
Optional
Explanation

number

number

โŒ

The player's phone number.

Commands

Set Verification Level

Allows administrators (or console) to manually set a verification level for a specific Qwuaker username.

Usage:

Argument
Explanation

username

The unique username of the Qwuaker account (e.g., @JohnDoe).

level

0 = Not Verified

1 = Verified (Blue Check)

2 = Business (Gold Check)

3 = Government (Grey Check)

Example:

Last updated