• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Solved Fisrt Items DON'T WORK!?

Hugofasima

Website: thenosegang.servegame.com
Joined
Jun 24, 2015
Messages
206
Reaction score
23
I can't install a First Items script! Even the mod one (author="The Forgotten Server").

Can anyone help me? I added on "mods" but nothing happened. I suspect that my TFS is not reading the mods, or something... I don't know.
 
Sorry, I'm using TFS 1.0!
Not a problem. :)

Unfortunately TFS 1.0 doesn't support Mods, you were correct.

You can instead make a creaturescript, onLogin, here is an example script:
First Items

Since your using TFS 1.0 you will most likely need to change this line:
Code:
function onLogin(player)
to:
Code:
function onLogin(cid)
local player = Player(cid)

Best of luck to you.
 
Not a problem. :)

Unfortunately TFS 1.0 doesn't support Mods, you were correct.

You can instead make a creaturescript, onLogin, here is an example script:
First Items

Since your using TFS 1.0 you will most likely need to change this line:
Code:
function onLogin(player)
to:
Code:
function onLogin(cid)
local player = Player(cid)

Best of luck to you.

THANK YOU SO MUCH!!!!!!! 100% SOLVED! PERFECT!

In that example script, I've added "local player = Player (player)" and not "local player = Player(cid)"
 
Last edited:
Back
Top