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

Action Scroll wich summons an demon and gives you 1 million exp

Pro Warbringer

Retired with developing
Joined
Sep 23, 2008
Messages
3,582
Reaction score
24
Location
Austria
This scroll will be added to an server for sure for being awarded to advance to 200 lvl :)
You will be able just at 200 lvl to make this quest or do that scroll!

okay lets show ya my script (im still newby scripter) !


local ItemID = 6119 - The ID of the scroll..
local spawn = Demon - The Demon wich will spawn..
local words = "O fuck! The diener of the Ruthless seven have been spawned!" - What the player will say..
local level = 200 - The Level wich you will be able to use the scroll

function onUse(cid, item, fromPosition, itemEx, toPosition)
ifitem.item id == 6119 then
doSummonCreature(Demon, pos)
doCreatureSay(cid, "O fuck! The diener of the Ruthless seven have been spawned!", 13)
doPlayerAddExp(cid, 1.000.000)
doRemoveItem(cid, item.uid, 1)
else
doPlayerSendCancel (cid, "Sorry you are not able to be sloughtered by the diener of the Ruthless Seven")
getPlayerLevel(cid) >= 200
end
return 1
end
 
Code:
local ItemID = 6119 [B]--[/B] The ID of the scroll..
local spawn = Demon [B]--[/B] The Demon wich will spawn..
local words = "O fuck! The diener of the Ruthless seven have been spawned!" [B]--[/B] What the player will say..
local level = 200 [B]--[/B] The Level wich you will be able to use the scroll

function onUse(cid, item, fromPosition, itemEx, toPosition)
ifitem.item id == 6119 then
doSummonCreature(Demon, pos)
doCreatureSay(cid, "O fuck! The diener of the Ruthless seven have been spawned!", 13)
doPlayerAddExp(cid, 1000000) -- removed .
doRemoveItem(cid, item.uid, 1)
else
doPlayerSendCancel (cid, "Sorry you are not able to be sloughtered by the diener of the Ruthless Seven")
getPlayerLevel(cid) >= 200
end
return 1
end

you don't use your locals lol?
 
PHP:
local ItemID = 6119 -- The ID of the scroll..
local spawn = Demon -- The Demon wich will spawn..
local words = "O fuck! The diener of the Ruthless seven have been spawned!" -- What the player will say..
local level = 200 -- The Level wich you will be able to use the scroll

function onUse(cid, item, fromPosition, itemEx, toPosition)
ifitem.item id == 6119 then
doSummonCreature(Demon, pos)
doCreatureSay(cid, "O fuck! The diener of the Ruthless seven have been spawned!", 13)
doPlayerAddExp(cid, 1000000) -- removed .
doRemoveItem(cid, item.uid, 1)
else
doPlayerSendCancel (cid, "Sorry you are not able to be sloughtered by the diener of the Ruthless Seven")
getPlayerLevel(cid) >= 200
end
return 1
end
 
PHP:
local config = {
    level = 200,
    spawn = "Demon",
    words = "O fuck! The diener of the Ruthless seven have been spawned!",
    sorry = "Sorry you are not able to be sloughtered by the diener of the Ruthless Seven"
}

function onUse(cid, item, fromPosition, itemEx, toPosition)
    if getPlayerLevel(cid) >= config.level then
        doSummonCreature(config.spawn, getPlayerPosition(cid))
        doCreatureSay(cid, config.words, 13)
        doPlayerAddExp(cid, 1000000)
        doRemoveItem(cid, item.uid, 1)
    else
        doPlayerSendCancel(cid, config.sorry)
    end
    return TRUE
end
 
This scroll will be added to an server for sure for being awarded to advance to 200 lvl :)
You will be able just at 200 lvl to make this quest or do that scroll!

okay lets show ya my script (im still newby scripter) !

everyone start somewhere and it will hopefully help someone keep up the work and you will be the best ? ;)
 
Lol ;> But this isn't a good start hehehe go follow some tutorials ;>
 
Back
Top