• 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 [TFS 1.1] Function doPlayerSendMailByName

Critico

Sexy
Joined
Mar 25, 2010
Messages
370
Reaction score
176
What function replace the 'doPlayerSendMailByName' role in TFS 1.1+

Thanks :)
 
You can create a mailbox somewhere on the map where no player can reach it and make your script drop it on the mailbox:
Code:
local container = Game.createItem(2595, 1)
local label = container:addItem(2599, 1)
label:setAttribute(ITEM_ATTRIBUTE_TEXT, "PLAYER_NAME") 
container:moveTo(Position(32341,32226,7)) -- position on the map where you placed your lonley mailbox

Any trouble implementing it into your desired script let me know.
 
You can create a mailbox somewhere on the map where no player can reach it and make your script drop it on the mailbox:
Code:
local container = Game.createItem(2595, 1)
local label = container:addItem(2599, 1)
label:setAttribute(ITEM_ATTRIBUTE_TEXT, "PLAYER_NAME")
container:moveTo(Position(32341,32226,7)) -- position on the map where you placed your lonley mailbox

Any trouble implementing it into your desired script let me know.

don't work

i need send item to depot from 'town id' of player
 

Similar threads

Back
Top