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

[8.5] The Cipsoft Project v0.1

Status
Not open for further replies.
So congratulations on the server, team OtLand is helping a lot more still has several bugs. The character will not save at least here is not saved, I uzo SQLite but I think this is not the problem, you log io char always comes back to the same place where born, and also can not by GM in them oO!



My English is bad because I BR!!!!

Sorry :X!
 
Changelog for This so far:

Code:
[B][I]Todo List:
[/I][/B]
[LIST]
[*]Buy Fluids With Backpacks (NPC TRADE CHANNEL AND MANUALLY SAYING BUY BP ____) -[B][COLOR="Red"]Reported[/COLOR][/B]
[*]Fluid LUA Scripts needs fixing -[B][COLOR="Red"]Reported[/COLOR][/B]
[*]New Spells need LUA Scripts (NEW AND FOR 0.2) -[B][COLOR="Red"]Reported[/COLOR][/B]
[*]Thais & Carlin needs all HOUSES -[B][COLOR="Red"]Reported[/COLOR][/B]
[*]Banshee Quest not working -[B][COLOR="Red"]Reported[/COLOR][/B]
[*]Behemonth Quest not working -[B][COLOR="Red"]Reported[/COLOR][/B]
[/LIST]

[B][I]Fix list:[/I][/B]

[LIST]
[*][B][I][COLOR="Red"]None ATM.[/COLOR][/I][/B]
[/LIST]

That's TODO List/Changelog so far, archez you can use it and this is for some people who want to update themeselves.

Thank you, that's what I was waiting for. :)
 
Thank you, that's what I was waiting for. :)

If you need some help with the coding, I might see if I still rememer it 8D.

Meanwhile, behemoth quest I was using (from Avestas engine)
Lua:
local config = {
	stonePos = { x = 0, y = 31677, z = 15, stackpos = STACKPOS_FIRST_ITEM_ABOVE_GROUNDTILE },
	rewards = { [6425] = 2427, [6426] = 2171, [6427] = 2466, [6428] = 2520 }
	-- Guardian Halberd, Platinum Amulet, Golden Armor, Demon Shield
}

function onUse(cid, item)
	if item.itemid == 1945 then
		for i = 33295, 33299 do
			config.stonePos.x = i
			doRemoveItem(getThingfromPos(config.stonePos).uid)
			doSendMagicEffect(config.stonePos, CONST_ME_MAGIC_RED)
		end
	doTransformItem(item.uid, item.itemid + 1)
	elseif item.itemid == 1946 then
		for i = 33295, 33299 do
			config.stonePos.x = i
			doCreateItem(1304, 1, config.stonePos)
			doSendMagicEffect(config.stonePos, CONST_ME_POFF)
		end
		doTransformItem(item.uid, item.itemid - 1)
	elseif item.itemid == 1740 then
		for action, reward in pairs(config.rewards) do
			if item.actionid == action then
				if getPlayerStorageValue(cid, action) == - 1 then
					doPlayerAddItem(cid, reward, 1)
					doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You have found a "..getItemName(reward)..".")
					setPlayerStorageValue(cid, action, TRUE)
				else
					doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "It is empty.")
				end
			end
		end
	end
	return TRUE
end

I might have some others... =p
 
Archez, i have all the quests scripted and ready to use for 0.2, pm me or ill send u on the official forum..
 
0.2 is coming in 15 minutes. (25 max.)
 
Last edited:
I don't get it; why are there 3 threads for this project?
 
Last edited by a moderator:
I see no scan so I dont know if this is safe!!!!

Jks
Downloading now
 
Status
Not open for further replies.
Back
Top