• 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 Questions :P

Agraeln

New Member
Joined
Feb 5, 2009
Messages
391
Reaction score
2
Location
Europe, Poland, Cracow.
Hello, I have two questions for otland users :)

How Can i make multiworld? I have my server and i find cool war server. How Can i implement it?

And two: I saw a cool system on somebodys OTS. Addon Scrool (It looks like a poem scroll) How Can i make this on my OTS ?

I find this: http://otland.net/f81/addon-dolls-33057/

How it works? and what i should do to replace item:doll with item:poem scroll?
 
Okay in my eyes I see almost 4 questions but ok :P

First of all you can have a multi world system. With Gesiors AAC you can
change settings in the config.php
For Gesior AAC you surely need the forgotten server to setup the website with.

Im not a scripter so I cannot talk about that addon scroll that you describe..

Hope I helped a bit.

Regards,
Wodian
 
The Addon Doll question is easy, just change the id from 8982 (which is the addon doll) to an item you want ;)
7532 is a scroll =D!

first assassin.lua:
LUA:
function onSay(cid, words, param)
	removenugget = doPlayerRemoveItem(cid, 7532, 1)
		if removenugget == 1 and getPlayerSex(cid) == 0 then
		doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MAGIC_RED)
		doPlayerAddOutfit(cid, 147, 1)
		doPlayerSendTextMessage(cid,MESSAGE_INFO_DESCR, "Now you have first barbarian!")
		elseif removenugget == 1 and getPlayerSex(cid) == 1 then
		doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MAGIC_RED)
		doPlayerAddOutfit(cid, 143, 1)
		doPlayerSendTextMessage(cid,MESSAGE_INFO_DESCR, "Now you have first barbarian!")
end
end
and first barbarian.lua:
LUA:
function onSay(cid, words, param)
	removenugget = doPlayerRemoveItem(cid, 7532, 1)
		if removenugget == 1 and getPlayerSex(cid) == 0 then
		doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MAGIC_RED)
		doPlayerAddOutfit(cid, 156, 1)
		doPlayerSendTextMessage(cid,MESSAGE_INFO_DESCR, "Now you have first assassin!")
		elseif removenugget == 1 and getPlayerSex(cid) == 1 then
		doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MAGIC_RED)
		doPlayerAddOutfit(cid, 152, 1)
		doPlayerSendTextMessage(cid,MESSAGE_INFO_DESCR, "Now you have first assassin!")
end
end

Im changing:
LUA:
removenugget = doPlayerRemoveItem(cid, 8982, 1)
to..
LUA:
	removenugget = doPlayerRemoveItem(cid, 7532, 1)

Here is some Scrolls/Books you can use :wub::
Books.jpg


Yours RunarM.
 
Last edited:
Back
Top