Posts: 783
Threads: 12
Joined: Jan 2014
Thanks: 2
Given 73 thank(s) in 61 post(s)
Do we have a procedure for obsoleting API methods? because I've got a few methods where I've changed the underling method, then put a hsim in manual bindings to prevent breaking plugins. Is there any way to obsolete those shims?
Posts: 6,485
Threads: 176
Joined: Jan 2012
Thanks: 131
Given 1074 thank(s) in 852 post(s)
Usually those shims should log a warning to the console, along with the Lua stack trace, we keep them in for some time, a few months, and then remove them.
Posts: 1,162
Threads: 68
Joined: Mar 2013
Thanks: 245
Given 125 thank(s) in 100 post(s)
Yesterday I returned from a 4-day school trip to Barcelona.
The last day we went into portaventura and I got into Dragon-Khan and Shambhala (the tallest rollercoaster in Europe)
If you someday come to spain, go there, its awesome.
The bad thing of this is that im out of lua challenge, but I dint have any posibilities.
Posts: 6,485
Threads: 176
Joined: Jan 2012
Thanks: 131
Given 1074 thank(s) in 852 post(s)
You've still got a day and a half, you can make it.
Posts: 513
Threads: 10
Joined: May 2014
Thanks: 138
Given 89 thank(s) in 75 post(s)
Can proto proxy be used for a vanilla server?
Posts: 6,485
Threads: 176
Joined: Jan 2012
Thanks: 131
Given 1074 thank(s) in 852 post(s)
06-21-2015, 07:48 AM
(This post was last modified: 06-21-2015, 07:48 AM by xoft.)
Yes, of course, that is the primary function. However, you need to disable online mode for it, because ProtoProxy effectively does man-in-the-middle attack on the protocol and online mode defeats that.
Also remember that ProtoProxy hasn't been updated for 1.8 yet.
Posts: 1,162
Threads: 68
Joined: Mar 2013
Thanks: 245
Given 125 thank(s) in 100 post(s)
happy birthday empty space!
:D
Posts: 254
Threads: 16
Joined: Oct 2013
Thanks: 3
Given 20 thank(s) in 18 post(s)
06-25-2015, 01:35 PM
(This post was last modified: 06-25-2015, 01:48 PM by SamJBarney.)
Quick Question: Is there a way for me to register n number of blocks to be ticked after a delay within a plugin?
Posts: 6,485
Threads: 176
Joined: Jan 2012
Thanks: 131
Given 1074 thank(s) in 852 post(s)
No, the blocks are ticked in random, but I think it might be possible to at least schedule one particular block per tick per chunk, using cWorld:SetNextBlockTick().