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

exp ring plzz! D:

wafuboe

Active Member
Joined
Dec 24, 2010
Messages
884
Solutions
2
Reaction score
26
i want a exp ring that that gives you 20% of the total experience that the monster gives.. example blightwalker 5000 exp, with ring 6000 like that :) with no limit of time :)

i searched but all had limit of time and a unestable exp ¬¬


thanks :D
 
:p
XML:
<action itemid="xxxx" event="script" value="YOURSCRIPTNAME.lua"/>
LUA:
function onEquip(cid, item, slot)
    if(item.itemid == xxxx) then 
        doPlayerSetExperienceRate(cid, 1.2) 
            doTransformItem(item.uid,xxxx) 
    end 
end
 
Last edited:
:p
XML:
<action itemid="xxxx" event="script" value="YOURSCRIPTNAME.lua"/>
LUA:
function onEquip(cid, item, slot)
    if(item.itemid == xxxx) then 
        doPlayerSetExperienceRate(cid, 1.2) 
           doCreatureSay(cid, "Your extra experience rate has started.", 
TALKTYPE_ORANGE_1,true,cid) 
            doTransformItem(item.uid,xxxx) 
    end 
end

Uhm, just so ya know "doPlayerSetExperienceRate" doesn't double exp rate. It sets the characters new exp rate

and

doCreatureSay(cid, "Your extra experience rate has started.", TALKTYPE_ORANGE_1,true,cid) <-- Wtf is this?.. :P
 

Similar threads

Back
Top