• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

[Request] 3 scripts needed

sebas182

New Member
Joined
Aug 10, 2008
Messages
121
Reaction score
1
I have search along 20 pages of scripts but not found...
i need some scripts and i'll post it below.
i have asked to Azi do it for me, but no answers after two days.
i have tryed some times but i am far away from a good result.


1 script - Scroll of Exp (diferently)
Script: I need a script that when you use a scroll...
-Up the exp rate from 5x to 10x.
-Duration, one hour.
-Add some thing to just one can be usable at time... if use two do not goes to 15x, and do not delete the item, just send a error message like: item already in use. or something like that.


2 script - Scroll of attack speed and spell of attack speed
script: I need a script that when you use a scroll...
-Up attack speed from 2000 to 1500.
-Duration, one minute
-buff icon
-the spell is an area buff who does not needs party
-the scroll adds just to the user
-both cannot be used togueter, or can but just one up, continue at 1500 attack speed


3 script - Special door
script: A script that when you use the special door (against intruses), you just pass it normaly...
[I realy don't know how to use it]
-if player have an storage id "x" at value "1" it enter.
-another just block normaly.



I realy need it with urgency! please some one help me! i'll add rep ++ imediately!
 
Last edited:
I madeup the "onlogin" near "login" i put it correctly and i got this message:
Error - CreatureEvent::configureEvent. No valid type for creature event.onlogin
Warning - BaseEvents::loadfromXml. Cannot configure event...


Waiting
 
Slawkens, this at login.lua?

local config = {
storage = 20532
}

function onLogin(cid)
if(getPlayerStorageValue(cid, config.storage) ~= -1) then
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Your extra experience rate has gone.")
setPlayerStorageValue(cid, config.storage)
end
return TRUE
 
Back
Top