Jump to content

Timic

Members
  • Posts

    169
  • Joined

  • Last visited

Recent Profile Visitors

1,052 profile views

Timic's Achievements

Busta

Busta (15/54)

0

Reputation

  1. Hello, i was wondering about getting player/players from other server. Maybe title explain enough.
  2. Dude, the script at your signature is wrong Sorry, I had to say that well, back on topic, I loved your maps TulioTC, is there a way to get some of them? Oh, I wrote that when I was tired Fixed now
  3. Nice maps! Keep 'em up!
  4. Did you even try to add root = getRootElement()?
  5. What's your problem? Member gave him the maps.
  6. Good map! I think they are from eXo
  7. You didn't even reply him. IS YOUR NICKNAME COLORCODED? Example: #FF00FFEco =================> Eco Yeah, I tried but it did not work. I've tried with ~XG~Tim#ff9000ic name
  8. I tryied everything to do, but it won't work
  9. There are no errors, but it shows white nick local x, y = guiGetScreenSize () local timicSettings = { xOffset = 556, yOffset = (y / 2) - 445, xOffset1 = 552, yOffset1 = (y / 2) - 443, } local textX = x - timicSettings.xOffset local textY = timicSettings.yOffset local textX1 = x - timicSettings.xOffset1 local textY1 = timicSettings.yOffset1 addEventHandler("onClientRender",root, function() dxDrawText("~XG~Timic",textX1, textY1, x, y,tocolor(0,0,0,255),1.0,"bankgothic","left","top",false,false,false) dxDrawColorText(getPlayerName(getLocalPlayer()),textX, textY, x, y,tocolor(255,255,255,255),1.0,"bankgothic","left","top",false,false,false) end ) --- --- --- --- --- function dxDrawColorText(str, ax, ay, bx, by, color, scale, font, alignX, alignY) if alignX then if alignX == "center" then local w = dxGetTextWidth(str:gsub("#%x%x%x%x%x%x",""), scale, font) ax = ax + (bx-ax)/2 - w/2 elseif alignX == "right" then local w = dxGetTextWidth(str:gsub("#%x%x%x%x%x%x",""), scale, font) ax = bx - w end end if alignY then if alignY == "center" then local h = dxGetFontHeight(scale, font) ay = ay + (by-ay)/2 - h/2 elseif alignY == "bottom" then local h = dxGetFontHeight(scale, font) ay = by - h end end local pat = "(.-)#(%x%x%x%x%x%x)" local s, e, cap, col = str:find(pat, 1) local last = 1 while s do if cap == "" and col then color = tocolor(tonumber("0x"..col:sub(1, 2)), tonumber("0x"..col:sub(3, 4)), tonumber("0x"..col:sub(5, 6)), 255) end if s ~= 1 or cap ~= "" then local w = dxGetTextWidth(cap, scale, font) dxDrawText(cap, ax, ay, ax + w, by, color, scale, font) ax = ax + w color = tocolor(tonumber("0x"..col:sub(1, 2)), tonumber("0x"..col:sub(3, 4)), tonumber("0x"..col:sub(5, 6)), 255) end last = e + 1 s, e, cap, col = str:find(pat, last) end if last <= #str then cap = str:sub(last) local w = dxGetTextWidth(cap, scale, font) dxDrawText(cap, ax, ay, ax + w, by, color, scale, font) end end
  10. I've fixed something, local x, y = guiGetScreenSize () local timicSettings = { xOffset = 556, yOffset = (y / 2) - 445, xOffset1 = 552, yOffset1 = (y / 2) - 443, } local textX = x - timicSettings.xOffset local textY = timicSettings.yOffset local textX1 = x - timicSettings.xOffset1 local textY1 = timicSettings.yOffset1 addEventHandler("onClientRender",root, function(player,name) local getp = type(name)=='string' and string.gsub ( name, '#%x%x%x%x%x%x', '' ) or name dxDrawText("~XG~Timic",textX1, textY1, x, y,tocolor(0,0,0,255),1.0,"bankgothic","left","top",false,false,false) dxDrawColorText(getp,textX, textY, x, y,tocolor(255,255,255,255),1.0,"bankgothic","left","top",false,false,false) end ) --- --- --- --- --- function dxDrawColorText(str, ax, ay, bx, by, color, scale, font, alignX, alignY) if alignX then if alignX == "center" then local w = dxGetTextWidth(str:gsub("#%x%x%x%x%x%x",""), scale, font) ax = ax + (bx-ax)/2 - w/2 elseif alignX == "right" then local w = dxGetTextWidth(str:gsub("#%x%x%x%x%x%x",""), scale, font) ax = bx - w end end if alignY then if alignY == "center" then local h = dxGetFontHeight(scale, font) ay = ay + (by-ay)/2 - h/2 elseif alignY == "bottom" then local h = dxGetFontHeight(scale, font) ay = by - h end end local pat = "(.-)#(%x%x%x%x%x%x)" local s, e, cap, col = str:find(pat, 1) local last = 1 while s do if cap == "" and col then color = tocolor(tonumber("0x"..col:sub(1, 2)), tonumber("0x"..col:sub(3, 4)), tonumber("0x"..col:sub(5, 6)), 255) end if s ~= 1 or cap ~= "" then local w = dxGetTextWidth(cap, scale, font) dxDrawText(cap, ax, ay, ax + w, by, color, scale, font) ax = ax + w color = tocolor(tonumber("0x"..col:sub(1, 2)), tonumber("0x"..col:sub(3, 4)), tonumber("0x"..col:sub(5, 6)), 255) end last = e + 1 s, e, cap, col = str:find(pat, last) end if last <= #str then cap = str:sub(last) local w = dxGetTextWidth(cap, scale, font) dxDrawText(cap, ax, ay, ax + w, by, color, scale, font) end end It gives me: ERROR: test\test_c.lua:52: attempt to index local 'str' (a nil value)
  11. Well, I want to do colored nick, but it gives me an error. Help please The code, client-side local x, y = guiGetScreenSize () local timicSettings = { xOffset = 556, yOffset = (y / 2) - 445, xOffset1 = 552, yOffset1 = (y / 2) - 443, } local textX = x - timicSettings.xOffset local textY = timicSettings.yOffset local textX1 = x - timicSettings.xOffset1 local textY1 = timicSettings.yOffset1 addEventHandler("onClientRender",root, function() dxDrawText("~XG~Timic",textX1, textY1, x, y,tocolor(0,0,0,255),1.0,"bankgothic","left","top",false,false,false) dxDrawColorText(getPlayerName(),textX, textY, x, y,tocolor(255,255,255,255),1.0,"bankgothic","left","top",false,false,false) end ) function dxDrawColorText(str, ax, ay, bx, by, color, scale, font, alignX, alignY) if alignX then if alignX == "center" then local w = dxGetTextWidth(str:gsub("#%x%x%x%x%x%x",""), scale, font) ax = ax + (bx-ax)/2 - w/2 elseif alignX == "right" then local w = dxGetTextWidth(str:gsub("#%x%x%x%x%x%x",""), scale, font) ax = bx - w end end if alignY then if alignY == "center" then local h = dxGetFontHeight(scale, font) ay = ay + (by-ay)/2 - h/2 elseif alignY == "bottom" then local h = dxGetFontHeight(scale, font) ay = by - h end end local pat = "(.-)#(%x%x%x%x%x%x)" local s, e, cap, col = str:find(pat, 1) local last = 1 while s do if cap == "" and col then color = tocolor(tonumber("0x"..col:sub(1, 2)), tonumber("0x"..col:sub(3, 4)), tonumber("0x"..col:sub(5, 6)), 255) end if s ~= 1 or cap ~= "" then local w = dxGetTextWidth(cap, scale, font) dxDrawText(cap, ax, ay, ax + w, by, color, scale, font) ax = ax + w color = tocolor(tonumber("0x"..col:sub(1, 2)), tonumber("0x"..col:sub(3, 4)), tonumber("0x"..col:sub(5, 6)), 255) end last = e + 1 s, e, cap, col = str:find(pat, last) end if last <= #str then cap = str:sub(last) local w = dxGetTextWidth(cap, scale, font) dxDrawText(cap, ax, ay, ax + w, by, color, scale, font) end end Picture: http://www.shrani.si/f/2q/Yy/3YxUDuF9/m ... 1613-4.png
  12. reflection = enb serie lulz smook = moded FX 2D pictures = crash on some explosion like the molotov = MTA dont like to have moded FX = Well, can you send these files via PM? ENB series for me won't work and I can't found 'moded FX 2D pictures'
  13. Well, I gave this script to Asia then he/she upload it. Anyway, top hunter times is easy to script it, just add 7/8 lines. Nevermind, back on topic.
×
×
  • Create New...