1. did not understand anything =))
    Stupid Google translator :D
     
  2. keep gettin
    (15:18:06) | [Oxide] 3:17 PM [Error] Failed to run a timer. (LuaScriptException: [string "m-Teleportation.lua"]:2481: attempt to index field 'RPCMessage' (a nil value))
    whats wrong
     
  3. Download the latest version of the plugin.
     
  4. was downloaded yesterday
     
  5. Downloaded from your host's control panel or from the website? The latest version here on the site does not use RPCMessage field anymore so it should be impossible for it to throw that error.
     
  6. Just double-check your files maybe, as if you'd open the file that you can download here you'll notice that the line that is throwing the error is now a blank line.
     
  7. Sometimes I randomly get this error (I have version 1.4.1 installed):

    Code:
    [Oxide] 10:38 PM [Error] Failed to run a timer. (LuaScriptException: [string "m-Teleportation.lua"]:2676: attempt to index field 'eulerAngles' (a nil value))
    [Oxide] 10:38 PM [Debug]   at NLua.Lua.ThrowExceptionFromError (Int32 oldTop) [0x00000] in <filename unknown>:0
      at NLua.Lua.CallFunction (System.Object function, System.Object[] args, System.Type[] returnTypes) [0x00000] in <filename unknown>:0
      at NLua.LuaFunction.Call (System.Object[] args, System.Type[] returnTypes) [0x00000] in <filename unknown>:0
      at NLua.Method.LuaDelegate.CallFunction (System.Object[] args, System.Object[] inArgs, System.Int32[] outArgs) [0x00000] in <filename unknown>:0
      at LuaGeneratedClass1.CallFunction () [0x00000] in <filename unknown>:0
      at Oxide.Core.Libraries.Timer+TimerInstance.Update () [0x00000] in <filename unknown>:0 
    Hope this will fixed soon :D
     
  8. I have been trying to replicate this error but have not been successful at it which makes it hard for me to find the cause of this problem, if you'd have any extra information on when exactly this happened (who was teleporting to who and against what type of buildingblock, ...) it would really help.
     
  9. How can I limit the use of the plugin only for admins? I've been searching for that in the plugin code but I just found and edited this, didn't work:

    Code:
    function PLUGIN:LoadDefaultConfig()
        -- General Settings:
        self.Config.Settings = {
            ChatName          = "Teleportation",
            ConfigVersion     = "1.4.1",
            HomesEnabled      = false,
            TPREnabled        = false,
            InterruptTPOnHurt = true
    
     
    Last edited by a moderator: Jan 13, 2015
  10. You need to edit those values in the config file, not in the plugin
     
  11. When I first downloaded this plugin worked great. After the two update it has become broken. When I try to /tp (X)(Y)(Z) I get

    [Oxide] 3:17 PM [Error] m-Teleportation: [string "m-Teleportation.lua"]:2297: attempt to index field 'AdminData' (a nil value)
    at NLua.Lua.ThrowExceptionFromError (Int32 oldTop) [0x00000] in <filename unknown>:0
    at NLua.Lua.CallFunction (System.Object function, System.Object[] args, System.Type[] returnTypes) [0x00000] in <filename unknown>:0
    at (wrapper managed-to-native) System.Reflection.MonoMethod:InternalInvoke (object,object[],System.Exception&)
    at System.Reflection.MonoMethod.Invoke (System.Object obj, BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00000] in <filename unknown>:0

    I have done a fresh install of everything. If anyone knows a fix, please let me know! This is one of the best plugins to have on a server.
     
  12. By the looks of it your datafile might be corrupted, can you check if everything works if you remove the datafile? (Keep in mind, this will remove all saved admin locations and all saved player homes, and if possible can you also send me this in a private message so I can have a look and perhaps find out why it's possibly corrupted?)
     
  13. Sure I can do that.


    EDIT: Deleting the data file worked! Thank you vary much. All the players would not stop asking me to fix it.
     
    Last edited by a moderator: Jan 14, 2015
  14. Code:
    [Oxide] 8:23 PM [Error] Failed to run a timer. (LuaScriptException: [string "m-T
    eleportation.lua"]:2676: attempt to index field 'eulerAngles' (a nil value))
    [Oxide] 8:23 PM [Debug]   at NLua.Lua.ThrowExceptionFromError (Int32 oldTop) [0x
    00000] in <filename unknown>:0
      at NLua.Lua.CallFunction (System.Object function, System.Object[] args, System
    .Type[] returnTypes) [0x00000] in <filename unknown>:0    21kb/s in, 57kb/s out
      at NLua.LuaFunction.Call (System.Object[] args, System.Type[] returnTypes) [0x
    00000] in <filename unknown>:0
      at NLua.Method.LuaDelegate.CallFunction (System.Object[] args, System.Object[]
    inArgs, System.Int32[] outArgs) [0x00000] in <filename unknown>:0
      at LuaGeneratedClass1.CallFunction () [0x00000] in <filename unknown>:0
      at Oxide.Core.Libraries.Timer+TimerInstance.Update () [0x00000] in <filename u
    [DOUBLEPOST=1421353419][/DOUBLEPOST]Fixed:
    local correctedLocations = {}
    local blockRotation = nil
    if not buildingBlock.transform then return end
    if not buildingBlock.transform.rotation then return end
    if not buildingBlock.transform.rotation.eulerAngles then return end
    local blockRotation = buildingBlock.transform.rotation.eulerAngles.y
     
  15. That only stops the error, but it will cancel the teleport which shouldn't happen, to be able to properly fix this is to find out what exactly is causing this which is nearly impossible to do on my own on my test server, I've never succeeded in triggering the error, basically the info I'd need is where exactly the player who accepted an incoming teleport was standing and against which buildingblocks, etc...
     
  16. how can i change some settings?just change the .LUA?or what?
     
  17. A configuration file with the name m-Teleportation.json should be automatically created when the plugin is loaded for the first time, editting the lua file is not required. If this file is not automatically generated you can use the config data that is specified on the plugin overview page.
     
  18. im not so understand,what should i do?just change .json? .lua?or casually?
     
  19. Edit the contents of m-Teleportation.json
    123.jpg