Jump to content

Clements

Members
  • Posts

    3
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed
  • Personal Text
    I am new!

Clements's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. So I use PermissionsEX API (https://github.com/PEXPlugins/PermissionsEx/wiki/Native-API-example) like it should be used for a Bukkit Plugin, but in my mod ?
  2. Hi all, I have a MCPC+ server with PermissionEX and I'm making mods for it. I'd like to know if it's possible to hook into PermissionEX (which is a Bukkit plugin) with a Forge Mod. Thank you for your help.
  3. Hello everyone, I'm making a GUI for my MCPC+ server and I'd like to know what's the best way to get the player money and draw it to the GUI ? I thought to connect to the MySQL database which has the player balances on it but I don't know if it possible and if this is a good way. Also, how to make my GUI draw something only in Multiplayer Mode ? I tried that in my drawScreen method, but it doesn't work. if(!mc.getMinecraft().theWorld.isRemote){ this.drawString(fontRendererObj, "Money:", posX+10, posY+30, 0xf5f5dc); this.drawString(fontRendererObj, getMoneyFromMysql()+"$", posX+50, posY+30, 0xffe100); }
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.