• 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!

onStepIn need script

Bloumer

New Member
Joined
Dec 12, 2008
Messages
198
Reaction score
0
Need script when i stay on tile this say orange text how much this item cost who all see. Someone can help?
 
I did not understand you completely, but I believe that you want something this way.

Code:
function onStepIn(cid, item, position, fromPosition)
local cost = 30000
local item = 2195 -- boots of haste

doCreatureSay(cid, "" .. getItemArticle(item) .. " " .. getItemName(item) .. " cost " .. cost .. ".", TALKTYPE_ORANGE_1)
return TRUE
end
 
Back
Top