Forum in READ ONLY mode! All questions and discussions on Discord official server, invite link: https://discord.gg/VxsGzJ7

error?wait (1000);

тут можно задать вопрос по скриптингу
Post Reply
longtianchi
Posts: 3
Joined: 12.02.2014 22:52

error?wait (1000);

Post by longtianchi »

I am using wait (1000); This command error, Compiler: [Error] (E: \ UO \ Stealth_v6.2.1 \ script \ 123.sc at 38:14): Invalid number of parameters
Why is this?
drabadan
Expert
Expert
Posts: 730
Joined: 13.12.2012 17:35
Contact:

Re: error?wait (1000);

Post by drabadan »

longtianchi wrote:I am using wait (1000); This command error, Compiler: [Error] (E: \ UO \ Stealth_v6.2.1 \ script \ 123.sc at 38:14): Invalid number of parameters
Why is this?
becouse of space between wait and (1000), you should write it like:

Code: Select all

wait(1000);
Post Reply