Jump to content

xVincenzoDriftx

Members
  • Posts

    4
  • Joined

  • Last visited

About xVincenzoDriftx

  • Birthday 06/09/1997

Details

  • Location
    Italy

xVincenzoDriftx's Achievements

Vic

Vic (3/54)

0

Reputation

  1. xVincenzoDriftx

    help

    function killzombieinwater ( ) local zombie = getElementData (ped, "zombie" ) if isElementInWater ( zombie ) then setElementHealth ( zombie, 0 ) end end addEvent ( "onZombieSpawn", true ) addEventHandler ( "onZombieSpawn", root, killzombieinwater ) this work?
  2. xVincenzoDriftx

    help

    try this... function killzombieinwater ( ) local zombie = getElementData ( source, "zombie" ) if isElementInWater ( zombie ) then setElementHealth ( zombie, 0 ) end end addEvent ( "onZombieSpawn", true ) addEventHandler ( "onZombieSpawn", root, killzombieinwater )
  3. Hello guys, i have a problem with gui label... I want use color coded in a gui label, but i don't know do it. I tried to do so, but it does not work. window = guiCreateWindow(17, 16, 768, 574, "Register", false) setElementData(label,"colorcoded",true) label = guiCreateLabel(10, 11, 720, 490, "Hi welcome to #FF0000my server", false, window) It don't work because the output is "Hi welcome to #FF0000my server". How can I fix? P.S: Sorry for my bad english
×
×
  • Create New...