golanu21 Posted March 26, 2013 Share Posted March 26, 2013 Hi how i make when i enter in a createPickup to show me a outputChatBox("Press F", source, 255, 255, 0) and when i press F ... THEN etc i know the commands are bindKey, createPickup, "onPickupHit",outputChatBox but idk how to join him ... Link to comment
iPrestege Posted March 26, 2013 Share Posted March 26, 2013 Like that? : local Pickup = createPickup (....); addEventHandler("onPickupHit",Pickup, function ( player ) if ( getElementType ( player ) == "player" ) then outputChatBox("* Press F To...",player,255,0,0,true); end end ); ._. Link to comment
golanu21 Posted March 26, 2013 Author Share Posted March 26, 2013 Like that? : local Pickup = createPickup (....); addEventHandler("onPickupHit",Pickup, function ( player ) if ( getElementType ( player ) == "player" ) then outputChatBox("* Press F To...",player,255,0,0,true); end end ); ._. i want to : when i am in the pickup and i press F THEN etc... ,, this i dont know Link to comment
iPrestege Posted March 26, 2013 Share Posted March 26, 2013 You can do some thing like that : P local Pickup = createPickup (....); addEventHandler("onClientPickupHit",Pickup, function ( player ) if ( player == localPlayer ) then bindKey ("F","down",xxx); outputChatBox("* Press F To Play Music!",255,0,0,true); end end ); function xxx( ) playSound("FilePath",true); end Link to comment
golanu21 Posted March 26, 2013 Author Share Posted March 26, 2013 You can do some thing like that : P local Pickup = createPickup (....); addEventHandler("onClientPickupHit",Pickup, function ( player ) if ( player == localPlayer ) then bindKey ("F","down",xxx); outputChatBox("* Press F To Play Music!",255,0,0,true); end end ); function xxx( ) playSound("FilePath",true); end Aha, thanx very mutch man Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now