Jump to content

Lisandu

Members
  • Posts

    22
  • Joined

  • Last visited

About Lisandu

  • Birthday July 26

Details

  • Gang
    Mister
  • Location
    San fierror
  • Occupation
    Grove
  • Interests
    Scripting :D

Recent Profile Visitors

827 profile views

Lisandu's Achievements

Rat

Rat (9/54)

2

Reputation

  1. Do anyone know how to hide player blip in Radar only For an Admins For command like t/hideblip . Help me and thanks.... im new to sripting
  2. Lisandu

    HELP!

    Use realdriveby and map editor for pickup.... https://community.multitheftauto.com/index.php?p=resources&s=details&id=57 = Driveby In map editor use this : Pickup
  3. Lisandu

    Hud-Bug

    I found what's the error... the error is in Login Panel function openLogin ( ) clicked = false addEventHandler ( "onClientPreRender", root, dxDrawLoginPanel ) isOpen = true showChat(false) showPlayerHudComponent ( 'all', true ) local f = xmlLoadFile ( '@data.xml', 'account' ) if f then local user = xmlNodeGetAttribute ( xmlFindChild ( f, 'user', 0 ), 'value' ) local pass = xmlNodeGetAttribute ( xmlFindChild ( f, 'pass', 0 ), 'value' ) guiSetText ( username, tostring ( user ) ) guiSetText ( password, tostring ( pass ) ) if ( user ~= "" or pass ~= "" ) then data.remember.clicked = true end end xmlUnloadFile ( f ) end i make showPlayerHudComponent ( 'all', false ) this to false... and it worked.. the bug died thanks for helping @The_GTA @eoL|Shady @markenic
  4. Lisandu

    Hud-Bug

    local components = { "weapon", "ammo", "health", "clock", "money", "breath", "armour", "wanted" } addEventHandler("onClientResourceStart", localPlayer, function () for _, component in ipairs( components ) do setPlayerHudComponentVisible( component, false ) end end) This isn't working... Is this correct?
  5. Lisandu

    Hud-Bug

    Okk.. I will do it, thanks for respond
  6. Lisandu

    Hud-Bug

    Not working Sir, its okey... i'm trying to look for script, thats work when we logIn
  7. Lisandu

    Hud-Bug

    Is it work when we rejoined?
  8. Lisandu

    Hud-Bug

    Oh wait local components = { "weapon", "ammo", "health", "clock", "money", "breath", "armour", "wanted" } addEventHandler("onClientPlayerWasted", localPlayer, function () for _, component in ipairs( components ) do setPlayerHudComponentVisible( component, false ) end end) local components = { "weapon", "ammo", "health", "clock", "money", "breath", "armour", "wanted" } addEventHandler("onClientPlayerSpawn", localPlayer, function () for _, component in ipairs( components ) do setPlayerHudComponentVisible( component, false ) end end) This is the script i used : Client Script is in Above
  9. Lisandu

    Hud-Bug

    Now I found simple script.. but it works only when we killed, but reconnected bug starts again..
  10. Nice its worked Thanks a lot! This worked correcty for me
  11. Lisandu

    Hud-Bug

    My server's hud bug with default one. i tried with all scripts in forums called *removehud, huddisble, etc..* but it works only when start. after we had killed or reconnected, again bug start. what can i do... pls HELP ? Please help me, This is important
×
×
  • Create New...