• 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 Function Getiteminfo

Frostie

Mapper/basic scripter (NL)
Joined
Feb 14, 2012
Messages
447
Reaction score
425
Location
Holland
The function GetItemInfo doesn't work in TFS 1.0 does it have a new name ?
 
Use metatables, e.g
Code:
local itemType = ItemType(itemId)
itemType:getName()
itemType:getPluralName()
itemType:getArticle()
itemType:getDescription()
 
Back
Top