1. Reneb submitted a new resource:

    Teleportation Requests - Teleportation requests for players, with optional tokens

    Read more about this resource...
     
  2. make it so u cant tp to your self
    [DOUBLEPOST=1429406971,1429341349][/DOUBLEPOST]make it to where u don't have to type full names
     
  3. Wulf

    Wulf Community Admin

    Typing full names isn't needed, and shouldn't be with any plugin.
     
  4. tpall for admin
    [DOUBLEPOST=1429408098][/DOUBLEPOST]
    it makes me do that for admin teleport plugin and this one I believe
     
  5. the findplayer from oxide isn't perfect, as it only works with FIRST partial names ex:

    for: Wulf
    Wulf works
    but ulfspider, doesn't

    i'll ask @Mughisi if you can do a little improvement on this part :)
     
  6. Why didn't you ask me yet!?
    It's in my PR for a few changes to the helper methods ;)
     
  7. dunno, i only saw that latelly + didnt think about it until now :p
     
  8. Hi I 'm new around here and I have a serious problem with my server, trying to install Oxide wanted putting on some pluggins but does not recognize all and anyway not serve them if I wanted to see sisque could guide me , help
    Nor corresponds to that version since I get this " Oxide [ SVN ]" and pluggins that I wish I install on my Server Serian :

    1) STARTER KIT
    2) WARNS OF DEATH , DISTANCE , ARMS , BODY
    3) SHARE
    4) REMOVE
    5 ) CREATE TEAM

    I hope your understanding , your help would be very useful I do not speak English ... I live in Chile, speak Spanish
     
  9. Thank you :)
     
  10. Can you make teleport requests only with permission(flag/oxide implented permissions system) ? (it's eassssy, but don't want to edit file every single update)
    And possibility to translate phrases without editing .cs file :p (config - json)
     
    Last edited by a moderator: Apr 22, 2015
  11. Got this error: Failed to call hook 'cmdChatTeleportRequest' on plugin 'TPR' (ArgumentException: An element with the same key already exists in the dictionary.)

    I was tp'ing to myself while under a rock for a test, it says "target is near a rock, cannot teleport" then when i try to send a TP again it comes up with that error.
     
  12. Hi found out bug from tp system when tp to your friend whos standing on the roof of someones building. after first tp before repeats if tping player disconnects from server he wont be moved to correct spot and result on many cases is that you go through 1-2 floors in to someones home.

    also sometimes comes this error:
    Code:
    8:21 PM [Error] Failed to call hook 'cmdChatTeleportRequest' on plugin 'TPR' (ArgumentException: An element with the same key already exists in the dictionary.)
    8:21 PM [Debug]   at System.Collections.Generic.Dictionary`2[NetUser,Oxide.Plugins.Timer].Add (.NetUser key, Oxide.Plugins.Timer value) [0x00000] in <filename unknown>:0
      at Oxide.Plugins.TPR.cmdChatTeleportRequest (.NetUser netuser, System.String command, System.String[] args) [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
     
    Last edited by a moderator: Jun 1, 2015
  13. thx for the information :) i'll look into it
     
  14. Could someone with coding skills try to make it not able to teleport to yourself, as it's exploitable.
     
  15. Is there someone who is able to add the throw up sound on receiving a TPR?
    [DOUBLEPOST=1433082855,1433023873][/DOUBLEPOST]Plugin is giving an error:
    Code:
    4:35 PM [Error] Failed to call hook 'cmdChatTeleportRequest' on plugin 'TPR' (ArgumentException: An element with the same key already exists in the dictionary.)
    4:35 PM [Debug]   at System.Collections.Generic.Dictionary`2[NetUser,Oxide.Plugins.Timer].Add (.NetUser key, Oxide.Plugins.Timer value) [0x00000] in <filename unknown>:0
      at Oxide.Plugins.TPR.cmdChatTeleportRequest (.NetUser netuser, System.String command, System.String[] args) [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
     
    Last edited by a moderator: Jun 1, 2015
  16. Just add to /tpr command this line after

    if(targetPlayer == null) { SendReply(netuser, "Target player doesn't exist"); return; }

    Code:
          if (targetPlayer == netuser)
           {
      SendReply(netuser, "You can't teleport to yourself.");
      return;
           }
    
     
    Last edited by a moderator: Jun 8, 2015
  17. Is it possible to add so u cannot TP on ceiling, inside shacks, or anywhere near an object. To prevent Glitching
     
  18. +1 to this. I would love to see this too ;)