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

Payed scripts: inquisition quest and AOL which works when you have RS!

christiandb

Member
Joined
Feb 5, 2008
Messages
2,469
Reaction score
5
Location
010
Hey,

I need the following script for inquisition quest:
If you kill a boss (for ex. Hellgorak) you will get a certain storage ID which makes you able to go into a certain tp. You need to have at least 20% of the exp of the boss.

The other script needs to work for the item ID of a broken amulet and it has to work just like an AOL but you can use it forever and it does work when you have RS.

Free scripts are appreciated and if you realy want money for your script please tell me how much you want. I'll transfer the money with Paypal.

Regards,

Chris~
 
the broken amulet aol you want try with this script:

playerpreparedeath.lua
Code:
function onPrepareDeath(cid, killer)
    if getPlayerItemCount(cid, 2196) >= 1  then
        doSetCreatureDropLoot(cid, 0)
    end
end

add then add in creaturescripts.xml

Code:
        <event type="preparedeath" name="PlayerDeathPrepare" script="playerpreparedeath.lua"/>


and the inquisition quest for monster im looking for it to :(,
sorry for not being able to help you at that point, but if someone can help with that it will be really appreciated.
 
the broken amulet aol you want try with this script:

playerpreparedeath.lua
Code:
function onPrepareDeath(cid, killer)
    if getPlayerItemCount(cid, 2196) >= 1  then
        doSetCreatureDropLoot(cid, 0)
    end
end

add then add in creaturescripts.xml

Code:
        <event type="preparedeath" name="PlayerDeathPrepare" script="playerpreparedeath.lua"/>


and the inquisition quest for monster im looking for it to :(,
sorry for not being able to help you at that point, but if someone can help with that it will be really appreciated.

Youll have to register event in onLogin function too.
registerCreatureEvent(cid, "PlayerDeathPrepare")
 
Ye but script is just looking for broken amulet everywhere in player's inventory. So I think that player will have this amulet in backpack, and for example stone skin amulet in necklace slot, he won't lose items too. Right?

@inquisition script
It's possible to make script "if you kill boss and gain the most of exp you will gain storage", but I think it's not possible to look into gained exp from the boss..
 
Back
Top