Custom App

Detailed section for Adding Custom Application.

So what are the available functions.

STPhone.PreviewPhoto

Type: (Function)

Parameters: @src, @type, @name, @time, @size

  • @src (string) - Photo Image / Video Source

  • @type (string) - Photo Type (Photo / Video)

  • @name (string) - Photo Name / Video Name

  • @time (string) - Photo Time / Video Time

  • @size (string) - Photo Size / Video Size

This Function allows you to display photos on the Gallery.

STPhone.CopyText

Type: (Function)

Parameters: @text

  • @text(string) - Text To Copy

This Function allows you to copy a specific text.

STPhone.LockPhone

Type: (Function)

This Function allows you to lock the Phone.

STPhone.ShowContact

Type: (Function)

Parameters: @name, @number

  • @name(string) - Contact Name (Optional)

  • @number(string) - Contact Number

This Function allows you to view a Contact in the contacts or add it to the contacts if it is not attached in the contacts.

STPhone.ShowConversition

Type: (Function)

Parameters: @number, @msgid

  • @number(int) - Contact Number

  • @msgid(int) - Message ID (Optional)

This Function Opens your messages with a Person or creates a new message.

STPhone.TwitterShowPost

Type: (Function)

Parameters: @postid

  • @postid(string) - Post ID

This Function allows you to view the Twitter Post.

STPhone.FormatBytes

Type: (Function)

Parameters: @bytes, @pretty

  • @byte(int) - Bytes

  • @pretty(boolean) - Pretty Format (ex. 10 MB / 3 GB) (optional)

This Function allows you to format the Byte type

STPhone.WalletPay

Type: (Function)

Parameters: @amount, @forcereturnhomescreen

  • @amount(int) - Amount

  • @forcereturnhomescreen(boolean) - Force Return Home Screen (optional)

This Function allows you to pay with WalletPay.

Note: This function uses promise api.

STPhone.ViewImage

Type: (Function)

Parameters: @src, @show

  • @src(string) - Image Source

  • @show(boolean) - Show / Hide

This function allows you to view Photos in a large format.

STPhone.OpenApp

Type: (Function)

Parameters: @appname

  • @appname(string) - App Name

This function allows you to open a Different Application.

STPhone.OpenModal

Type: (Function)

Parameters: @title, @descp, @placeholder, @callback, @enableInput, @canceltext, @savetext, @showsavebtn

  • @title(string) - Modal Title

  • @descp(string) - Modal Description

  • @placeholder(string) - Modal Placeholder

  • @callback(function) - Modal Callback (Parameter: Input Value)

  • @enableInput(boolean) - Enable Input

  • @canceltext(string) - Cancel Button Text

  • @savetext(string) - Save Button Text

  • @showsavebtn(boolean) - Show Save Button

This function allows you to Create Modals.

STPhone.ChangePhoneBorderColor

Type: (Function)

Parameters: @color

  • @color(string) - Color (Hex)

This function allows you to change the case color of the phone.

STPhone.ChangePhoneSize

Type: (Function)

Parameters: @ishorizontal

  • @ishorizontal(boolean) - Is Horizontal Phone

This function allows you to rotate the Phone.

STPhone.GetConfig

Type: (Function)

Return: Config File

STPhone.GetLanguages

Type: (Function)

Return: Languages

STPhone:Client:Notify

Type: (Event)

Side: (Client)

Parameters: App, Title, Content, Timeout, Image

  • App (string) - App Name

  • Title (string) - Notify Title

  • Content (string) - Notify Content

  • Timeout (int) - Notify Display Time

  • Image (string) - Notify Image

An event that you can use to send notifications to the phone

StachePhone:RequestSMS

Type: (Event)

Side: (Client)

Parameters: Data

  • Data (table) - SMS Data

Data = {
    Sender = "Bank",
    MessageID = 997468748641385,
    Message = "Thank you for joining our bank."
}

It is used to send SMS to the phone.

/phonefix

Type: (Command)

Side: (Client)

If you are unable to restart via settings when you experience a problem with the phone, use this command.

STPhone:Server:AddMoneyToCard

Type: (Event)

Side: (Server)

Parameters: CardID, Amount, CitizenID, Author

  • CardID (string) - CardID or 'main' for cash account

  • Amount (int) - Amount

  • CitizenID (string) - CitizenID

  • Author (string) - Author For Transactions

An event that you can use to add money to a player's wallet card

STPhone:Server:RemoveMoneyFromCard

Type: (Event)

Side: (Server)

Parameters: CardID, Amount, CitizenID, Author

  • CardID (string) - CardID or 'main' for cash account

  • Amount (int) - Amount

  • CitizenID (string) - CitizenID

  • Author (string) - Author For Transactions

An event that you can use to remove money to a player's wallet card

Last updated