- D1 Meta Docs - Denizen Script -
Home Page / Pi to one million places / Contact mcmonkey / Donate / Paste Scripts / Denizen Help /
You are browsing as a guest.
Login | Register








The script repo is an archive of historical scripts. For modern scripts, or to post your own, please use the Scripts forum section.





HardcoreMobs


By BloodEko
Created: 2018/06/02 20:34:34 UTC-07:00 (5 years and 321 days ago)
Edited: 2018/06/02 20:36:27 UTC-07:00 (5 years and 321 days ago)
Likes: 0

Denizen Version: mc 1.12.2
Script Version: 1
Description:

Your players only use OP diamond armor ?
Monsters are way too weak ?

Try out this script, as it adds hardcore mobs.

- skeletons shoot you in the air
- creepers make a bigger explosion
- special effects for zombies, spiders, endermans


Download script | View raw script
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
2800

HardcoreMobs:
  type: world
  events:
    on creeper explodes:
    - wait 1
    - explode power:9 <context.location>

    on player damaged:
    - if <c.damager.entity_type||x> == SKELETON {
      - wait 1t
      - adjust <player> velocity:0,1,0
      }

    on player damaged by spider:
    - cast BLINDNESS duration:7 power:4
    - cast HUNGER duration:7 power:4

    on player damaged by zombie:
    - cast POISON duration:2s power:2

    on player damaged by enderman:
    - cast WITHER duration:2 power:2

    on system time hourly:
    - webget "http://stats.denizenscript.com/tracker?script=143&version=1&players=<server.list_online_players.size>"







View History