Optifine

Status
This thread has been locked.
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

Hawkk

Feedback score
0
Posts
225
Reactions
71
Resources
0
This is possible with skript and a bow, not sure if a bow is needed (probably is :c)

I'll try tomorrow and get back to you

Unless you don't want me to try? :cry:

Edit: Finished it
 
Last edited:

MarkElf

9+ Year Member
Supreme
Feedback score
27
Posts
1,215
Reactions
1,217
Resources
2
Can't this be done with the slow potion effect? Players wouldn't quite be able to move but at least they would be able to zoom in, kind of like binoculars. If I got that horribly wrong, then my bad, I haven't launched minecraft in months.
 

Hawkk

Feedback score
0
Posts
225
Reactions
71
Resources
0
Can't this be done with the slow potion effect? Players wouldn't quite be able to move but at least they would be able to zoom in, kind of like binoculars. If I got that horribly wrong, then my bad, I haven't launched minecraft in months.
No that's correct. That's how I made it[DOUBLEPOST=1483317745][/DOUBLEPOST]superfastiggy I tried :p I took so long because I didn't make it until today which was followed by some testing

The biggest problem was people moving, if you apply too much slowness there's no amount of speed that can go against that since the speed decreases the vision

If you don't want this, I get it, you want a plugin; I would too

Link: https://www.mediafire.com/?zj5hb8wxvnwd399

Code:

Code:
command /optifine:
    aliases: zoom
    permission: optifine.use
    trigger:
        if {zoom.%player%} is set:
            message "&aOptifine is on"
            clear {zoom.%player%}
            stop trigger
        message "&cOptifine is off"
        remove slowness from player
        remove speed from player
        set {zoom.%player%} to true
        stop trigger
      
on leftclick:
    if {zoom.%player%} is not set:
        set {optifine.%player%} to true
        cancel event
        apply slowness 5 to player for 999 days
    else:
        delete {optifine.%player%}
    if {zoom.%player%} is set:
        stop trigger
      
on join:
    delete {zoom.%player%}
 
Last edited:
Status
This thread has been locked.
Top