Difference between revisions of "Talk:Main Page"

From wiki.vg
Jump to navigation Jump to search
(→‎Why wiki.vg?: Reply - .vg is for "virgin islands" or "video games".)
(9 intermediate revisions by 8 users not shown)
Line 11: Line 11:
 
--[[User:Bleonard252|Bleonard252]] ([[User talk:Bleonard252|talk]]) 17:29, 29 July 2015 (UTC)
 
--[[User:Bleonard252|Bleonard252]] ([[User talk:Bleonard252|talk]]) 17:29, 29 July 2015 (UTC)
  
:[.vg https://en.wikipedia.org/wiki/.vg] is apparently for the Virgin Islands, but also can be used to mean video games, if that helps.  --[[User:Pokechu22|Pokechu22]] ([[User talk:Pokechu22|talk]]) 00:06, 26 October 2015 (UTC)
+
:[http://en.wikipedia.org/wiki/.vg .vg] is apparently for the Virgin Islands, but also can be used to mean video games, if that helps.  --[[User:Pokechu22|Pokechu22]] ([[User talk:Pokechu22|talk]]) 00:06, 26 October 2015 (UTC)
 +
 
 +
== Velocity ==
 +
 
 +
I can confirm that velocity is in 1/8000ths
 +
 
 +
    /**
 +
    * Sets the velocity of the specified entity to the specified value
 +
    */
 +
    public void handleEntityVelocity(SPacketEntityVelocity packetIn)
 +
    {
 +
        PacketThreadUtil.checkThreadAndEnqueue(packetIn, this, this.gameController);
 +
        Entity entity = this.clientWorldController.getEntityByID(packetIn.getEntityID());
 +
 
 +
        if (entity != null)
 +
        {
 +
            entity.setVelocity((double)packetIn.getMotionX() / 8000.0D, (double)packetIn.getMotionY() / 8000.0D, (double)packetIn.getMotionZ() / 8000.0D);
 +
        }
 +
    }
 +
 
 +
From 1.11.2 source
 +
 
 +
== Any Updates here in 2018 ==
 +
 
 +
Hi - will this wiki get updates for 2018 ?
 +
 
 +
== can the article path on this wiki be changed ==
 +
 
 +
please can this article path on this wiki be changed from /$1 to /wiki/$1 as on wikipedia? the /wiki/$1 is better then the simple /$1. '''[[User:Psl631|Psl631]] ([[User talk:Psl631|talk]]) 17:36, 13 September 2018 (UTC)'''
 +
: The short URL looks much cleaner. [[User:Nixinova|Nixinova]] ([[User talk:Nixinova|talk]]) 22:15, 18 May 2019 (UTC)
 +
 
 +
== Change terminology ==
 +
 
 +
Shouldn't "Minecraft Modern" be changed to "Java Edition", to match the official terminology? When I first came across this wiki I had no idea what this was referring to and thought it was like a mod or something. The main page should also say what this wiki is for, since I still don't really know. [[User:Nixinova|Nixinova]] ([[User talk:Nixinova|talk]]) 22:14, 18 May 2019 (UTC)

Revision as of 22:15, 18 May 2019

Minecraft not in Beta anymore

Can we change all "Minecraft Beta" references to just "Minecraft" on this wiki? --Thvortex 16:57, 13 January 2012 (MST)

How about "Minecraft Modern" and start referring to it as the Modern Protocol (to juxtapose with "Classic Protocol") 01:07, 13 March 2012 (MST)

The official website uses "Minecraft" and "Minecraft Classic" when referring to the two versions. That's what I as going for. --Thvortex 00:14, 27 March 2012 (MST)

Why wiki.vg?

A domain called wiki for Minecraft? Seems odd. VG? Never heard such a country code. --Bleonard252 (talk) 17:29, 29 July 2015 (UTC)

.vg is apparently for the Virgin Islands, but also can be used to mean video games, if that helps. --Pokechu22 (talk) 00:06, 26 October 2015 (UTC)

Velocity

I can confirm that velocity is in 1/8000ths

   /**
    * Sets the velocity of the specified entity to the specified value
    */
   public void handleEntityVelocity(SPacketEntityVelocity packetIn)
   {
       PacketThreadUtil.checkThreadAndEnqueue(packetIn, this, this.gameController);
       Entity entity = this.clientWorldController.getEntityByID(packetIn.getEntityID());
       if (entity != null)
       {
           entity.setVelocity((double)packetIn.getMotionX() / 8000.0D, (double)packetIn.getMotionY() / 8000.0D, (double)packetIn.getMotionZ() / 8000.0D);
       }
   }

From 1.11.2 source

Any Updates here in 2018

Hi - will this wiki get updates for 2018 ?

can the article path on this wiki be changed

please can this article path on this wiki be changed from /$1 to /wiki/$1 as on wikipedia? the /wiki/$1 is better then the simple /$1. Psl631 (talk) 17:36, 13 September 2018 (UTC)

The short URL looks much cleaner. Nixinova (talk) 22:15, 18 May 2019 (UTC)

Change terminology

Shouldn't "Minecraft Modern" be changed to "Java Edition", to match the official terminology? When I first came across this wiki I had no idea what this was referring to and thought it was like a mod or something. The main page should also say what this wiki is for, since I still don't really know. Nixinova (talk) 22:14, 18 May 2019 (UTC)