Jump to content

Lisandu

Members
  • Posts

    22
  • Joined

  • Last visited

Everything posted by Lisandu

  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
  12. exports['infinity_infobox']:showInfobox("Você acertou", "success") ?
  13. Never Give-Up :N

     

  14. oh thanks? also i found a one from Random Messages ToPIC local messages = { {"msg1"}, {"msg2"}, {"msg3"}, {"msg4"}, {"msg5"}, {"msg6"}, {"msg7"} } function test () outputChatBox(unpack(messages[math.random(#messages)]), getRootElement(), 255, 0, 0, true) end setTimer(test, 10000, 0) Try this... SERVER Side make sure put ur own messages to msg1, msg2 like, {"Your message"},
  15. Lisandu

    Hide the HUD

    It worked and thanks to All ?
  16. Can anyone tell me how to send server dalay suto msg, i want it?
×
×
  • Create New...