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

door with time and more :)

Zauberer

New Member
Joined
May 5, 2009
Messages
8
Reaction score
0
Who can help me with this script :=

1.-a door that can be open by everybody, but just between 5:00 pm and 5:10 pm
the idea is that the door can only be open between that minutes

2.-a wall that has 500.000 of life, that can be attacked and when the wall have 0 of life it disapear.

3.-
a broadcast message at 4:45 pm saying "Quedan 15 minutos para poder entrar a la puerta Magica"
a broadcast message at 4:50 pm saying "Quedan 10 minutos para poder entrar a la puerta Magica"
a broadcast message at 4:55 pm saying "Quedan 5 minutos para poder entrar a la puerta Magica"
a broadcast message at 4:58 pm saying "Quedan 2 minutos para poder entrar a la puerta Magica"
a broadcast message at 4:59 pm saying "Quedan 1 minutos para poder entrar a la puerta Magica"
a broadcast message at 5:00 pm saying "Ya puedes entrar a la puerta magica"
a broadcast message at 5:05 pm saying "En 5 minutos mas se cerrara la puerta magica"
a broadcast message at 5:07 pm saying "En 3 minutos mas se cerrara la puerta magica"
a broadcast message at 5:09 pm saying "En 1 minutos mas se cerrara la puerta magica"
a broadcast message at 5:10 pm saying "La puerta magica a sido cerrada"


thanks for the help :)

and sorry 4 my english
 
I can't help with #1 or #3 but...

Code:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Wall of Strength" nameDescription="a wall" race="blood" experience="1000" speed="0" manacost="200">
  <health now="500000" max="500000"/>
  <look type="3361" head="20" body="30" legs="40" feet="50" corpse="2256"/>
  <targetchange interval="2000" chance="0"/>
  <strategy attack="100" defense="0"/>
  <flags>
    <flag summonable="0"/>
    <flag attackable="1"/>
    <flag hostile="0"/>
    <flag illusionable="0"/>
    <flag convinceable="0"/>
    <flag pushable="0"/>
    <flag canpushitems="0"/>
    <flag canpushcreatures="0"/>
    <flag targetdistance="1"/>
    <flag staticattack="90"/>
    <flag runonhealth="0"/>
  </flags>
  <attacks>
    <attack name="melee" interval="2000" skill="15" attack="7"/>
  </attacks>
  <defenses armor="1" defense="2"/>
  <elements>
	<element earthPercent="12"/>
	<element holyPercent="20"/>
	<element icePercent="-6"/>
	<element deathPercent="-10"/>
  </elements>
  <voices interval="5000" chance="10">
	<voice sentence="Grrrr!"/>
  </voices>
  <loot>
    <item id="3976" countmax="10" chance1="50000" chancemax="0"/>
    <item id="2148" countmax="7" chance1="80000" chancemax="0"/>
    <item id="2696" chance="20000"/>
  </loot>
</monster>


Rep if I helped =)
 
Back
Top