pulse-rb 1.2.24 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/adapters/windui.lua +8 -4
- package/dist/index.js +265 -221
- package/package.json +3 -2
- package/pulse/runtime.lua +154 -0
- package/templates/component_esp.ts +15 -0
- package/templates/component_fov.ts +17 -0
- package/templates/component_speed.ts +19 -0
- package/templates/gitignore +1 -1
- package/templates/layout.ts +20 -0
- package/templates/page_home.ts +8 -0
- package/adapters/linoria.lua +0 -233
- package/pulse/ui/linoria_settings.lua +0 -55
- package/templates/example_esp.rblua +0 -69
- package/templates/example_fov.rblua +0 -20
- package/templates/example_speed.rblua +0 -25
- package/templates/layout.rblua +0 -28
- package/templates/module.rblua +0 -32
- package/templates/page_home.rblua +0 -9
package/templates/layout.rblua
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
layout {
|
|
2
|
-
title = SCRIPT_NAME,
|
|
3
|
-
author = SCRIPT_AUTHOR, -- shown as subtitle under the title
|
|
4
|
-
toggle_key = "RightControl", -- Enum.KeyCode name — menu open/close bind
|
|
5
|
-
size = { 850, 560 }, -- window width × height in pixels
|
|
6
|
-
ui_library = "windui", -- "linoria" | "windui"
|
|
7
|
-
theme = "Indigo", -- Dark Light Rose Plant Red Indigo Sky Violet Amber Emerald Midnight Crimson MonokaiPro CottonCandy Mellowsi Rainbow
|
|
8
|
-
icon = "code-2", -- Lucide icon name, rbxassetid://, or URL
|
|
9
|
-
folder = "{NAME}", -- executor save folder for config persistence
|
|
10
|
-
notify_title = SCRIPT_NAME, -- notification header text
|
|
11
|
-
transparency = 0.8, -- background transparency: 0 = opaque, 1 = fully transparent
|
|
12
|
-
acrylic = true, -- blur effect behind window (executor must support it)
|
|
13
|
-
open_button_mobile_only = true, -- false = show floating open button on desktop too
|
|
14
|
-
open_button_icon = "code-2", -- Lucide icon for the floating open button
|
|
15
|
-
|
|
16
|
-
-- Custom WindUI themes — entries appear in the theme dropdown automatically.
|
|
17
|
-
-- Available fields: accent background outline text placeholder button icon
|
|
18
|
-
themes = {
|
|
19
|
-
-- { name = "MyTheme", accent = "#7c3aed", background = "#0e0c1a", outline = "#1e1b4b",
|
|
20
|
-
-- text = "#e8e3ff", placeholder = "#6d6d8a", button = "#1e1b4b", icon = "#a78bfa" },
|
|
21
|
-
},
|
|
22
|
-
|
|
23
|
-
-- compat_exclude lists modules dropped from build/script.compat.obf.lua
|
|
24
|
-
-- (the build for executors that don't support full UNC APIs).
|
|
25
|
-
compat_exclude = {
|
|
26
|
-
-- "player/UNC.rblua",
|
|
27
|
-
}
|
|
28
|
-
}
|
package/templates/module.rblua
DELETED
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
component {
|
|
2
|
-
-- ── Signals ───────────────────────────────────────────────────────────────
|
|
3
|
-
signal enabled = false
|
|
4
|
-
|
|
5
|
-
-- ── Keybind (toggle on keypress) ──────────────────────────────────────────
|
|
6
|
-
-- keybind Enum.KeyCode.X → enabled
|
|
7
|
-
|
|
8
|
-
-- ── State change handler ──────────────────────────────────────────────────
|
|
9
|
-
on enabled {
|
|
10
|
-
if v then
|
|
11
|
-
-- feature activated
|
|
12
|
-
else
|
|
13
|
-
-- feature deactivated
|
|
14
|
-
end
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
-- ── Respawn handler ───────────────────────────────────────────────────────
|
|
18
|
-
on Respawn {
|
|
19
|
-
-- runs every time the player's character loads
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
-- ── Per-frame loop ────────────────────────────────────────────────────────
|
|
23
|
-
-- on Heartbeat when enabled {
|
|
24
|
-
-- guard hrp
|
|
25
|
-
-- -- 60fps logic here
|
|
26
|
-
-- }
|
|
27
|
-
|
|
28
|
-
-- ── Exported functions (callable from other components) ───────────────────
|
|
29
|
-
func Toggle() {
|
|
30
|
-
enabled(not enabled())
|
|
31
|
-
}
|
|
32
|
-
}
|