Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - FireOctober

#1
I made a mistake Blob library is exis but there is no file class in client-side Input/Output library
#2
I write down
 local myfile = file("tt.txt","ab+");
 
in both server-side script and Client-Side Script , and in server-side will create a file called "tt.txt",but client will not
(the client files folder is 
C:\Users\Administrator\AppData\Roaming\VCMP\04beta\store\YOUIP-Port\)
#3
老哥 你解决了吗 我和你想法一样 用图片表示文字 但是 资源一多 就不下载了
#4
Quote from: Athanatos on Feb 09, 2019, 07:36 PM
Quote from: FireOctober on Feb 04, 2019, 12:42 PMI put main.nut and test.nut in store\script follor and writed

Dude, the correct folder is : store/scripts/
put main.nut in store\script\
put test.nut in store\scripts\
and write dofile("scripts/test.nut") or dofile("store/scripts/test.nut") not work.
server version is 04rel006
#5
Quote from: umar4911 on Feb 04, 2019, 04:00 PMAre you sure that the "test.nut" file has no problems?
Sure.Because the "test.nut" file only have a command
function Script::ScriptLoad()
{
Console.Print("Client Script Loaded");
}
And it don't execute
#6
I put main.nut and test.nut in store\script follor and writed

function Script::ScriptLoad()
{
dofile("test.nut");
}

but test.nut didn't working in game.
so I think it is a BUG.