WebSK by jensjeflensje

Create websites using Skript

Events

0

Expressions

9

Effects

1

Conditions

0

Types

1

Sections

0

Structures

0

Total

11

Fix java version 1715 days, 9 hours and 16 minutes ago

Fixed that the plugin will work on most java versions now

View Update

Release 1.2.0 1751 days, 5 hours and 42 minutes ago

Release 1.2.0

View Update

WebSK 1761 days and 48 minutes ago

WebSK is a Skript addon that lets you create the back-end of websites using Skript. This means you can easily implement ingame elements inside a website (or HTTP API). It relies on one event, which is the `on request` event, which you can get the path from, which will execute any Skript code you want it to, as long as it returns a string to return on the web page.

Setup is as easy as this:

define webserver:
port: 8000
on request:
# your code


An example of something you can create with this addon is a system that displays someone's amount of money on the website (requires vault):

define webserver:
port: 8000
on request:
set {_player} to parameter "player" of {_req} parsed as offline player
return "%money of {_player}%"

You would reach this website by going to (ip):8000/money?player=(playername)

For more examples, go to https://files.jederu.nl/websk.html

Discord server: https://discord.gg/u7FG5FtHHw

View Update

© Copyright 2014-2026 skUnity

All rights reserved.