At this moment i only wonder how repo with guide is related to server build

https://github.com/Tokariew/tomenet-guide/releases
all version which i compiled are on github

Code: Select all
function partybus()
local i
for i = 1,NumPlayers do
players(i).recall_pos.wx = 63;
players(i).recall_pos.wy = 63;
players(i).recall_pos.wz = 0;
-- let's try LEVEL_OUTSIDE_RAND (5) instead of LEVEL_OUTSIDE (4) - C. Blue :)
players(i).new_level_method = 5;
msg_print(i, "\255yA magical partybus shanghais you and spirits you away from the krakens!");
recall_player(i, "");
end
end
Code: Select all
#ifdef WINDOWS
mkdir(buf2);
#else
mkdir(buf2, 0770);
#endif
Code: Select all
#if defined(WINDOWS) && !defined(CYGWIN)
mkdir(buf2);
#else
mkdir(buf2, 0770);
#endif