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

[REQUEST] Spells Scrolls

Ranyo13

ManCausingMayhem
Joined
Aug 22, 2009
Messages
981
Reaction score
39
Hey otlanders..

I was just wondering if a pro scripter cud help me with what im going to request.. Well it doesnt need a pro scripter just a scripter.. :P
I have never seen this idea on any ot so its a unique idea maybe but i hope its possible to be done..
All i need is when i right click a scroll named with the spell name.. E.G: Scream spell scroll.. It lets me learn the spell..
Plus i want a spell that shud be in spells.xml but not in !spells command that when you get like level 50 you learn it automaticly i want it not to be learnt automaticly i want it to be learnt with a scroll or a quest chest.. I just need the scroll so someone learns it! I dun want everything to be learnt as easy as shit.
Please dun flame coz my english sucks...
Thanks in advance, Reputation for who helps me with this!
 
Last edited:
No, learn to fucking search. ever heard of key words? try it cause i know theres about 20 of what your looking for.
 
credits to owned =
local spell = "youspellname"
function onUse(cid, item, fromPosition, itemEx, toPosition)
if not getPlayerLearnedInstantSpell(cid, spell) then
doPlayerLearnInstantSpell(cid, spell)
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You have learned the spell " .. spell .. ".")
doSendMagicEffect(toPosition, CONST_ME_FIREHIT)
doRemoveItem(item.uid)
else
doCreatureSay(cid, "You have already learned this spell!", TALKTYPE_ORANGE_1, nil, cid, getThingPos(cid))
end
return true
end
 
Well you bitch called owned if u wont fucking help me with my request just gtfo my thread and dun ever come back u little cunt.. grow up kid
 
LUA:
local spell = "Light Healing"
function onUse(cid, item, fromPosition, itemEx, toPosition)
	if not getPlayerLearnedInstantSpell(cid, spell) then
		doPlayerLearnInstantSpell(cid, spell)
		doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You have learned spell " .. spell .. "!")
		doSendMagicEffect(getThingPos(cid), CONST_ME_MAGIC_BLUE)
	else
		doCreatureSay(cid, "You already know this spell!", TALKTYPE_ORANGE_1, nil, cid, getThingPos(cid))
	end
	return true
end
 
Back
Top