Jump to content

Jokerbomb

Members
  • Posts

    3
  • Joined

  • Last visited

Details

  • Gang
    Cigány
  • Location
    Hungary
  • Occupation
    FA
  • Interests
    Client side skin

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Jokerbomb's Achievements

I ordered some spaghetti with marinara sauce and I got egg noodles and ketchup. I'm an average nobody.

I ordered some spaghetti with marinara sauce and I got egg noodles and ketchup. I'm an average nobody. (2/54)

0

Reputation

  1. Hello. I want to get my roundedRectangle to show smoother like this: Mines looking like this at the moment: Code is looking like this at the moment: function renderInfobox() dxDrawRoundedRectangles(sX/2 - width / 2 - 24, startY + 1, width - 2 + 25, height +20, tocolor ( 0,0,0,180 ), 8 ) dxDrawText(text, sX/2 - width / 2 + width / 2, startY+20 + height / 2, _, _, tocolor(200, 200, 200, a), 1, font, "center", "center", false, false, false, true) end addEventHandler("onClientRender", root, renderInfobox) function dxDrawRoundedRectangles(x, y, rx, ry, color, radius) rx = rx - radius * 2 ry = ry - radius * 2 x = x + radius y = y + radius if (rx >= 0) and (ry >= 0) then dxDrawRectangle(x, y, rx, ry, color) dxDrawRectangle(x, y - radius, rx, radius, color) dxDrawRectangle(x, y + ry, rx, radius, color) dxDrawRectangle(x - radius, y, radius, ry, color) dxDrawRectangle(x + rx, y, radius, ry, color) dxDrawCircle(x, y, radius, 180, 270, color, color, 7) dxDrawCircle(x + rx, y, radius, 270, 360, color, color, 7) dxDrawCircle(x + rx, y + ry, radius, 0, 90, color, color, 7) dxDrawCircle(x, y + ry, radius, 90, 180, color, color, 7) end end
  2. Its in a server and his hitbox was smaller as you can see. So it is working its named client side skin using, i met with some players who used this beafore.
  3. Hello! Is there any way to put a skin with a different hibox into my mods folder and then into the server's modded skin's folder and play with that skin in the server? I saw some videos of It and i want to try it. Example video:
×
×
  • Create New...