• 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!
  • New resources must be posted under Resources tab. A discussion thread will be created automatically, you can't open threads manually anymore.

TalkAction add items to your SMS Shop using talkaction (in game)

Seminari

Banned User
Joined
Dec 13, 2009
Messages
1,496
Reaction score
34
Location
Poland
How to use?
And this script adding items to your SMS SHOP.
/shop_add itemname, count, points, description
example:
/shop_add Iron Ore, 25, 50, You see iron ore bla bla.
Code:
function onSay(cid, words, param)
--> By Seminari <--
--[[ Wiec tak   komenda                  /shop_add item_nazwa, count, points, opis
        offer_name = item_nazwa
		itemid1 = item_nazwa  ale id
		count1 = count
		offertype = item (zawsze!)
		offerdescription = opis
		
]]--
	local t = string.explode(param, ",")
	
	
	
	
	local offer_name = "" .. t[1] .. ""
	local count1 = t[2]
	local points = t[3]
	local itemid1 = getItemIdByName("" .. t[1] .. "")
	local offer_type = "item"
	local offer_description = "" .. t[4] .. ""
	
 db.executeQuery("INSERT INTO  `" .. getConfigValue('sqlDatabase') .."`.`z_shop_offer`(`points` ,`itemid1` ,`count1`, `offer_type` , `offer_description`, `offer_name` ) VALUES ('" .. points .. "', '" .. itemid1 .. "', '" .. count1 .. "', '" .. offer_type .. "', '" .. offer_description .. "', '" .. offer_name .. "');")    
	
	return true
end
 
Last edited:
And where is buy sms shop items in game ; d ?
For example !buy fire axe ?
And fire axe is name item in sms shop ; d
 
no no, it's for "god", "gm"~~ to add items to sms shop using command in game.. it's faster then adding it in database or in website's admin panel.

u see item for example Golden Helmet, u want add offer to sms shop then:


/shop_add itemname, count, points, description

/shop_add Golden Helmet, 1, 350, The best helmet on the OTS!

and then, u will have it in your sms shop :)
 
Wow, thanks a ton. I was having trouble adding offers to the shop (for some reason my admin panel is blank). But with this talkaction, it made things so simple. Works like a charm, great work.
 
Back
Top