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

Two Noobish Problems

Agraeln

New Member
Joined
Feb 5, 2009
Messages
391
Reaction score
2
Location
Europe, Poland, Cracow.
Hi :D

I have two problems, first: I want to make a shop system but it dont gives me items :( And i dont know is buy points working... I'm read article about ShopSystem by gesior but i have TFS on Linux, and i haven't Globals.lua etc..

And to: I want to make this: http://otland.net/f118/gesior-acc-maker-forgotten-server-0-3-powergamers-online-time-stats-8640/

And again i dont have globals.lua etc and my login.lua looks is:

Code:
 function onLogin(cid)
	local loss = getConfigValue('deathLostPercent')
	if(loss ~= nil) then
		doPlayerSetLossPercent(cid, PLAYERLOSS_EXPERIENCE, loss * 10)
	end

	registerCreatureEvent(cid, "Mail")
	registerCreatureEvent(cid, "GuildMotd")
	registerCreatureEvent(cid, "PlayerDeath")
	registerCreatureEvent(cid, "BountyHunter")
	registerCreatureEvent(cid, "WarAttack")
	registerCreatureEvent(cid, "WarKill")
	registerCreatureEvent(cid, "MonstersKills")
	return TRUE
end

And It should be this ^ + Powergamers.
 
Back
Top