Jump to content

mcer

Members
  • Posts

    145
  • Joined

  • Last visited

About mcer

  • Birthday 16/04/1991

Details

  • Gang
    BHG
  • Location
    Mexico, Sonora
  • Interests
    Scripting, CG Graphics, VFX, SFX, GFX, Games & Technology.

mcer's Achievements

Poot-butt

Poot-butt (14/54)

0

Reputation

  1. mcer

    Weird thing

    Try this --Values GUIEditor = {} local timeB = getRealTime() local rRoot = resourceRoot local monthday = timeB.monthday local month = timeB.month local year = timeB.year function drawUserpanel() GUIEditor.sidebar = guiCreateStaticImage(0.84, 0.00, 0.16, 1.00, "img/sidebar.png", true) --Clock labels GUIEditor.clockHoursLabel = guiCreateLabel(0.00, 0.00, 0.797, 0.12, "Hours", true, GUIEditor.sidebar) GUIEditor.clockMinutesLabel = guiCreateLabel(0.00, 0.00, 1.197, 0.12, "Minutes", true, GUIEditor.sidebar) GUIEditor.dateLabel = guiCreateLabel(0.08, 0.09, 0.89, 0.03, ""..monthday.."."..month.."."..year.."", true, GUIEditor.sidebar) setTimer ( function() local timeC = getRealTime() local minutes = timeC.minute local hours = timeC.hour guiSetText ( GUIEditor.clockHoursLabel, ""..hours..":") guiSetText ( GUIEditor.clockMinutesLabel, " "..minutes.."") end, 50, 0 ) end addEventHandler("onClientResourceStart", rRoot,drawUserpanel)
  2. I want to make a player name detector, BUT with a max number of characters.
  3. mcer

    How can i do this?

    What I want to do is a smooth transition from one color to another.
  4. I want to make a little animation for a text, I want to change the color of a text but, with an animation. Example: TEXT in a second = TEXT.
  5. mcer

    How can i do this?

    When i use the setTimer, It only appear when you scroll the mouse and disappear in less than a second.
  6. mcer

    How can i do this?

    What I would like to make is something like when you change the radio station. A text appears for a few seconds. But, what would appear in this case would be a set of DXimages and DXText for (example); 5 seconds and after that it disappears.
  7. mcer

    How can i do this?

    Can you make an example?. I used "setTimer" before making this post.
  8. mcer

    How can i do this?

    Sorry, fixed ._. What I want is: That function has multiple DXtext and DXimages. Appear over a period of time.
  9. When someone changes his weapon, I want to start a function, and that over a period of time this function have to finish. I tried with this "onClientPlayerWeaponSwitch" but when I tried to use it, the function only has ended in a period of less than 1 second. Can anyone help me?.
  10. Please if you know how to do this, Reply .
×
×
  • Create New...