Search results

  1. Jakkee

    Live Stats?

    Im not sure if Rank++ has SQL but its very similar to the link you posted http://gomagma.org/community/index.php?resources/rank.178/
  2. Jakkee

    Get the height of a pillar?

    if((World.GetGround(Entity.X, Entity.Z) + 8) < Entity.Y){ Would that count 8 high from a foundation?
  3. Jakkee

    Approved AdminLocations

    Jakkee submitted a new resource: AdminLocations - Basic TP system for admins to teleport to landmarks Read more about this resource...
  4. Jakkee

    AdminLocations - AdminLocations

    Description: Basic plugin that admins can use to teleport to many places around the map Installation: - Place into Python folder - Reload/restart the server - Done Commands: /tploc - Displays the locations to go /tploc <Number> - Teleport to that location To do: None, Tell me in the...
  5. Jakkee

    Approved RockBaseFinder

    Jakkee submitted a new resource: RockBaseFinder - Stand on top of a rock and type the command to be teleported into the rock! *Rcon Admin Only* Read more about this resource...
  6. Jakkee

    RockBaseFinder - RockBaseFinder

    Description: Easily get into a rock by standing on top and typing /down. *Rcon Admin Only* Installation: - Place into Python folder - Reload/restart the server - Done Commands: /down (Sends you down) To do: None, Tell me in the discussions.
  7. Jakkee

    Solved RustPP not working for me

    Version 1.0.4Pre. Also you can edit where files are located by going to: \Rust_Server_data\FougeriteDirectory.CFG and editing the file how you like.
  8. Jakkee

    Decay

    Correct me if im wrong but I think if you go into Rust++ config and change Decay=true to false it works in Fougerite. I have no decay on my server
  9. Jakkee

    TAG Clan System Does Not Appear

    Desbugar?
  10. Jakkee

    Get the height of a pillar?

    So I would use World.GetGround?
  11. Jakkee

    Get the height of a pillar?

    The World.GetGround? it doesn't work to well for something like this. It mearsures from the top down I think (Not 100% sure)
  12. Jakkee

    Get the height of a pillar?

    So if a Pillar is over *Insert number here* high it is destroyed. I can get to be destroyed if greater than 300 by doing: if (300 < Enitiy.Y){ } Just need to know how to get the height starting at a foundation EDIT: At first I thought World.GetGround would work, Nope :P
  13. Jakkee

    Approved Player's Info

    im pretty sure it doesn't as far as I know you just type the command and the information about that player will come up
  14. Jakkee

    Get the height of a pillar?

    How do I get the height of a pillar from a foundation?
  15. Jakkee

    Solved VIP++ + Home system for VIP players

    Function expected.
  16. Jakkee

    Solved VIP++ + Home system for VIP players

    Nothing happened, Even removed if(Player.Admin){
  17. Jakkee

    Solved VIP++ + Home system for VIP players

    Yeah nothing shows up when I reload the server
  18. Jakkee

    Solved VIP++ + Home system for VIP players

    If I have if(isVip(Player) == true || Player.Admin == true){ The plugin will not load, If I remove it it loads fine.
  19. Jakkee

    Solved RustPP not working for me

    In the Latest release you can change where the Rust++ file is located.
  20. Jakkee

    Solved VIP++ + Home system for VIP players

    Nothing happens when I do /testbro function On_Command(Player, cmd, args) { if(cmd == "testbro") { Player.Message("asd: " + Util.GetRootFolder()); } else { Player.message("Theres an error m8"); } } Same with this function On_PluginInit() {...