Skip to content

Backpack

Victor Westerlund edited this page Dec 27, 2020 · 1 revision
from labylib import Backpack

What you can change:

Class Function
Backpack.Multi Custom properties
Backpack.Visibility Cosmetic visibility

Backpack.Multi()

Manipulate cosmetic metadata.

What you can change:

Function Description
color() Custom properties

Call subfunctions and submit changes by calling update()

backp = Backpack.Multi(PHPSESSID)
# ...
backp.update()

Backpack.Multi().color()

Takes a tuple of two HEX-colors

colors = ("1655ff","12ff16")

backp.color(colors)
# or
backp.color(colors[0],colors[1])

Backpack.Visibility()

backp_vis = Backpack.Visibility(PHPSESSID)
backp_vis.update("<VALUE>")

Hide or show the cosmetic.

Action Value
Show "show"
Hide "hide"

an int can also be passed as Visibile = True/False

Find your PHPSESSID cookie

Click here to read


List of labylib Modules

Click here to read

Clone this wiki locally