Skript Help

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the comminuty!

    Now, what are you waiting for? Join the community now!

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

Status
Not open for further replies.

Absorptionn

Member
May 11, 2019
3
0
0
23
Hello everybody,

It's probably a simple mistake but what am i doing wrong here.

Code:
on mine of iron ore or coal ore or gold ore or diamond ore or redstone ore:
    if {meetup} is true:
        wait 10 ticks
        message the player "{&servername} STOP MINING AND HEAD TO 0,0 NOW! IT IS MEETUP!"

Help appreciated! :emoji_grinning:
 
Hello everybody,

It's probably a simple mistake but what am i doing wrong here.

Code:
on mine of iron ore or coal ore or gold ore or diamond ore or redstone ore:
    if {meetup} is true:
        wait 10 ticks
        message the player "{&servername} STOP MINING AND HEAD TO 0,0 NOW! IT IS MEETUP!"

Help appreciated! :emoji_grinning:
Code:
on break:
 if event-block is iron ore, coal ore, gold ore, diamond ore or redstone ore:
    if {meetup} is true:
        wait 10 ticks
        message the player "{&servername} STOP MINING AND HEAD TO 0,0 NOW! IT IS MEETUP!"
 
If this is not right, play with the item aliases a bit. It varies from version to version.

Code:
on break:
    if event-block is iron ore or coal ore or gold ore or diamond ore or inactive redstone ore or active redstone ore:
        if {meetup} is true:
            wait 10 ticks
            message "{&servername} STOP MINING AND HEAD TO 0,0 NOW! IT IS MEETUP!" to player
 
Hello everybody,

It's probably a simple mistake but what am i doing wrong here.

Code:
on mine of iron ore or coal ore or gold ore or diamond ore or redstone ore:
    if {meetup} is true:
        wait 10 ticks
        message the player "{&servername} STOP MINING AND HEAD TO 0,0 NOW! IT IS MEETUP!"

Help appreciated! :emoji_grinning:
I do not recommend using "message the player"
use
code_language.skript:
message "text" to player
 
Status
Not open for further replies.