Remove everything about compiled files

Just a refactor that doesn't affect any script or add anything new.
Plutonium T6 now supports loading source scripts so compiling them isn't needed anymore
https://plutonium.pw/docs/changelog/#r3408

[Refactor]
Removed all compiled scripts
Moved all source scripts to the main folder instead of a source folder
Renamed all source scripts to remove the source tag at the end

Removed notions of compiled and source scripts in the repository's README
This commit is contained in:
Resxt
2023-02-27 14:05:04 +01:00
parent 011b7fa786
commit 4501736b79
9 changed files with 2 additions and 1389 deletions

View File

@ -1,24 +0,0 @@
Init()
{
level thread OnPlayerConnect();
}
OnPlayerConnect()
{
for(;;)
{
level waittill("connected", player);
Print(player.name + " GUID: " + player.guid);
player thread OnPlayerSpawned();
}
}
OnPlayerSpawned()
{
self endon("disconnect");
for(;;)
{
self waittill("spawned_player");
Print(self.name + " GUID: " + self.guid);
}
}

Binary file not shown.