#powdered snow freeze effect

1 messages · Page 1 of 1 (latest)

eager ivy
#

is there any way at all to give someone the powdered snow freeze effect thru commands, skript effects, or anything

earnest mirage
#

I think you can give people the freezing effect

#

Idk if skript has added it

#

But it should be a thing in minecraft

#

So worst case scenario you can use a console command

eager ivy
#

I looked everywhere

earnest mirage
#

Oh

eager ivy
#

maybe it is but like no one knows idfk

#

cus I wouldve found out

#

theres even a request to mojang to add a way to do that

earnest mirage
#

I didnt see the not

eager ivy
#

?

#

what u mean

earnest mirage
eager ivy
#

ye

earnest mirage
#

I mean you could put them in powered snow

#

Ig

eager ivy
#

but I dont want the powdered snow to show

earnest mirage
#

You can hide it

eager ivy
#

so how will the skript work

#

since there gona move to another place

#

I mena like

#

idk

#

bruyh

earnest mirage
#

You constantly

#

Set the block at their lowwr half to powder snow

#

And hide it

#

Not super efficient

eager ivy
#

and then delete it instantaniously?

#

?

#

ye not

earnest mirage
#

But its the only way i can think of

#

Ye

#

After they leave the block delete

small hazel
#

skbee has freeze time

#

2.7 will have freeze time

earnest mirage
#

Does it

eager ivy
#

???

#

how doI use it

#

whats 2.7

small hazel
#

skript 2.7, the next version that's in beta rn

#

you should use the skbee syntax

earnest mirage
small hazel
#

it's on skripthub

eager ivy
#

im on 2.6

earnest mirage
#

Weird, must have overlooked it

eager ivy
#

2.6.4

#

so it wont work?

earnest mirage
eager ivy
#

no I mean

#

will it work on 2.6.4

earnest mirage
#

Yes

#

Skript will have it built in 2.7

eager ivy
#

what is the example supposed to do

#

afk

small hazel
eager ivy
#

ah nice the example did what I wanted it to do

#

K so now one question

#

how do I use oraxen items in skript

#

like replace chicken with my oraxen food

#

in this case frozen cheese

earnest mirage
#

Probably have to use a command from oraxen

#

Or something

#

Cuz skript wont know what it is

#

Unless oraxen just uses custom model data

eager ivy
eager ivy
earnest mirage
#

Console command "command you want to run"

#

I dont understand your confusion

eager ivy
#

what

#

I dont understand what umean

#

an item cant be a comand

earnest mirage
#

Does it not have a give command

eager ivy
#

yes it dose

#

/o give Puttato frozen_cheese

earnest mirage
#

So make the console do that

eager ivy
#

that amkes no sense

earnest mirage
#

?

eager ivy
#

that wont tell skript its eating it

earnest mirage
#

Oh

#

Theres a consume event

#

I thought you already had that part down

eager ivy
#

naw

earnest mirage
#

Or right click if it doesnt count it as food

eager ivy
#

im so confusd

earnest mirage
#

Same

#

I dont get your issue

#

Or goal

eager ivy
#

on eating chicken:
set frozen time of player to 10 seconds
add 5 seconds to frozen time of target entity
reset frozen time of all entities
set {_ticks} to frozen time of player

#

I want chicken

#

to be replaced

#

with my oraxen item

#

frozen cheese

#

so if they eat frozen cheese

#

not chicken

#

the skript gets ran

earnest mirage
#

So do they start with chicken or butter

eager ivy
earnest mirage
#

Nvm

#

Debug real quick

#

Check what skript think butter is

#
  send player's tool```
eager ivy
#

butter doesnt exist??

earnest mirage
#

And right click with butter

eager ivy
#

what

#

im so confused

earnest mirage
#

See what skript thinks it is

#

Because it has to be something

#

We just dont know whay skript thinks it is

#

So check

eager ivy
#

K hold on

#
on right click with butter:
    send player's tool
#

like that?

earnest mirage
#

No

#

Because butter isnt a thing

earnest mirage
eager ivy
#

ok

#

so what does the skript do actualy

#

its not doing anything

#

im right clicking

#

oh

#

when I right click on blocks it says 0 air

earnest mirage
#

Huh

#

That's weird

#

Well

#

Try switching right click to consume

eager ivy
#

wait

earnest mirage
#

To see if you can eat it

eager ivy
#

when I right click with frozen cheese

#

it says

#

chicken named Frozen Cheese

#

in chat

earnest mirage
#

Oh

#

Ye

#

Thays good

#

So just check the name

#

In the consume event

eager ivy
#

so I just put that in the consume event?

earnest mirage
#

Just add a name check

eager ivy
#

ah

#

ur agenius

#

but what if someone renames chicken frozen cheese

earnest mirage
#

¯_(ツ)_/¯

#

You can give the butter a lorr

#

If thats possible

eager ivy
#

its possible

earnest mirage
#

Idk how your other plugin works

#

Then add a lore

#

And check the lore

#

They cant edit lore

eager ivy
#

it doesnt say the lore

#

in chat

#

for some reason

earnest mirage
#

send lore of player's tool

eager ivy
#

just the name

#

ok

#

yeah

#

it says the lore

earnest mirage
#

Mhm

#

if line 1 of lore of player's tool is "put the lore here":

eager ivy
#

K well the lore ofmy frozen cheese is ꐷ lol

#

thats a emoji ingame

#

cold emoji

#
on eating chicken:
    if line 1 of lore of player's tool is "ꐷ":
        set frozen time of player to 10 seconds
        add 5 seconds to frozen time of target entity
        reset frozen time of all entities
        set {_ticks} to frozen time of player
#

I did that itsnot working

#

theres no errors

earnest mirage
#

Ad a broadcast before and after the lore check

eager ivy
#

?

#

what

#

whats that

earnest mirage
#

Whats what

eager ivy
#

a broadcast

earnest mirage
#

You dont know what broadcast is?

eager ivy
#

naw

earnest mirage
#

Its sends a message to all players...

eager ivy
#

I dont wan tit to send a msg to all players

earnest mirage
#

For testing

eager ivy
#

ohh ok

earnest mirage
#

You can use a send too ig

eager ivy
#
on eating chicken:
    broadcast "broke"
    if line 1 of lore of player's tool is "ꐷ":
        broadcast "work"
        set frozen time of player to 10 seconds
        add 5 seconds to frozen time of target entity
        reset frozen time of all entities
        set {_ticks} to frozen time of player
#

like that?

#

its broadcasting broke

earnest mirage
#

Hm

#

Is the lore colored

eager ivy
#

and not broadcasting work

eager ivy
earnest mirage
#

Ah

eager ivy
#

<#FFFFFF>

#

but u canrt see it

#

and plus

#

it dosent show

earnest mirage
#

Either add the color to the check

eager ivy
#

in the send

earnest mirage
#

Or check uncolored line 1 of lore....

eager ivy
#

oh wait

earnest mirage
#

A white color code still changes it

eager ivy
#

I got an idention error

#

when i changed that

#

das weird

#

bruh

#

im not getting a error

#

with uncolored line instead

#

ITS WORKING

#

ayyy

earnest mirage
#

Nice

eager ivy
#

K so now

#

how do I make it so in a container that is above a certain block like blue ice, a certain item inside of it will be replaced with another item after a certain amount of time

earnest mirage
#

add x to inventory of block at location(x, y, z, world("name"))

eager ivy
#

so how would I tell it which item is being replaced in the container

earnest mirage
#

You could loop the contents

#

The chest inventory is the same as a player inventory

eager ivy
#

whats a a.pmayer

eager ivy
#

whatds looping contents

earnest mirage
#

Just do it like you would with a person

eager ivy
earnest mirage
#

Shame

#

Try to go learn lol

#

Im too lazy to teach you

eager ivy
#

I want tod o it like this:

If chest is above blue ice:
If chest has chicken
If line 1 of lore of chicken is “cheese”
replace the item with frozen cheese

#

And idk how I would do frozen cheese there

earnest mirage
#

I dont either

#

You could try setting the custom model data

eager ivy
earnest mirage
#

Too lazy to explain that

eager ivy
#

ima ask chat gpot

#

wtf

#

why cant I get on chat gpot

#

das lame

earnest mirage
#

Dont

eager ivy
#

ez vpn bypass anyways

eager ivy
earnest mirage
#

It cant use skript

#

Just try saying its name

eager ivy
#

wdym

earnest mirage
#

Try spelling it correctly

#

See what happens

eager ivy
#

spelling what correctly??

earnest mirage
#

Chat gpot

eager ivy
#

rule "Check Chest on Blue Ice"
conditions:
chestAboveBlueIce(chest) and chestHasChicken(chest) and chickenLoreLine1IsCheese(chest)
actions:
// Your desired actions here

bruh this isnt skript

#

chat gpot sucks

earnest mirage
#

Wow

#

I wonder if i said that

eager ivy
#

?

#

im so confused

small hazel
#

there's a reason this rule exists

eager ivy
#

oh

#

oops sorry

#

didnt know

earnest mirage
#

Its also why tou cant say chat gpot

eager ivy
#

Oh I just realized u cant

#

I always call it gpot

earnest mirage
#

When you spell it correctly

eager ivy
#

wait can I ask why is it not allowed

#

afk

earnest mirage
eager ivy
eager ivy
eager ivy
#

hi

#

how would I do it

earnest mirage
#

You would get the block somehow

#

Then get its inventory

#

Then loop the contents of the inventory

#

Then check if that item is a diamond

#

Then set that slot to an emerald

eager ivy
#

im so confused

#

so this the skript I made so far and its not working

if block's location is within 2 blocks above blue_ice
    if block contains 1 chicken:
        if uncolored line 1 lore of chicken is "cheese":
            broadcast "works"
earnest mirage
#

What is that

eager ivy
#

what u mean

earnest mirage
#

Where is your event

eager ivy
#

oh

#

I dont want a event

earnest mirage
#

...

eager ivy
#

?

earnest mirage
#

Everything needs an event

#

Code doesn't just happen

eager ivy
#

I want it to just happen if something is those conditions

#

so what event do I use

earnest mirage
#

What

#

If you just want this to happen once put it in a command

eager ivy
#

noo

earnest mirage
#

Otherwise find a suitable event

eager ivy
#

bruh

earnest mirage
#

So you wanna refill it every 5 mins

#

Or whatever

eager ivy
#

no?

#

basicly

earnest mirage
#

I dont get what you are doing

eager ivy
#

if cheese

#

is in a chest

#

thats above ice

#

then after a certain amount of time

#

the cheese

#

will turn into frozen cheese

earnest mirage
#

Ok

#

And how does the cheese get there

eager ivy
#

the player puts it in the chest

#

ohhh so thats the event

earnest mirage
#

🧠

eager ivy
#

I cant find an event fro that

earnest mirage
eager ivy
#

thats where im looking obv

earnest mirage
#

Click it

eager ivy
#

ok

#

ive already read this

earnest mirage
#

So why not use it

eager ivy
#

wait

#

hold on

#

let me read again

earnest mirage
eager ivy
#

it doesnt let me say what im clicking the inventory with tho

earnest mirage
#

...

#

It does

#

Also

#

You can check the contents of the inventory

eager ivy
#

where

eager ivy
#

not clicking on a certain item in the chest

earnest mirage
eager ivy
#

put putting a certain item in

#

whats that mean

earnest mirage
#

How do you think you put it in

eager ivy
#

by clicking

earnest mirage
#

Nvm

#

This is too complicated for you

eager ivy
#

?

earnest mirage
#

You dont see what im doing

#

Its fine

eager ivy
#

I dont

earnest mirage
#

Either figure out your own system or get someone to make it for you

eager ivy
#
on inventory click:
    if block contains 1 chicken:
        if block's location is within 2 blocks above blue_ice
            if uncolored line 1 lore of chicken is "cheese":
                broadcast "works"
earnest mirage
#

Try it

eager ivy
#

ok

#

its giving my errors

#

sooo

#

why is the radius thing not working

#

if block's location is within 2 blocks above blue_ice

#

I did how the docs did it

earnest mirage
#

It is

eager ivy
#

its givng a error

earnest mirage
#

blue_ice on the other hand is not

#

You dont use _ in skript items

eager ivy
#

K im using if block's location is within 2 blocks above player's location:

#

just as testing purpose

#

and it sasy this

#

so why is that not working

#

@earnest mirage

barren monolith
#

use distance

#

distance between player and loop-block >= 2

eager ivy
barren monolith
#

your error

#

I was telling you how to fix it