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

Prince Drazzak SCRIPT (like Anihilator)

adrielmandra

New Member
Joined
Jul 10, 2011
Messages
35
Reaction score
0
Hello, how are you? I ask a similar script with the Anihilator ... should work like this:

1. should be 5 players;
2. The first player must have certain item;
3. When the player uses the item he has in another item all players are teleported to an area and a monster is summoned.

Thank U!
 
Post your server version.

It is also useful to add more details, like which itemids and where the items should be, this to make it more easy for people to understand what exactly you are looking for.
 
You can use this.
https://github.com/orts/server/blob/master/data/actions/scripts/quests/annihilator/lever.lua

Then add 1 playerpos more and instead of demons that monster (so remove the other positions and change name).
Instead of the lever part check for target itemid.
Code:
if target.itemid ~= 22641 then
     return false
end
Or if it should give a message, you can add that.
Code:
if target.itemid ~= 22641 then
     return player:sendCancelMessage("You can only use this on a golden pedestal.")
end
 
Back
Top