Guest Posted August 8, 2017 Share Posted August 8, 2017 Can someone help me out with script ? I need script that when my player dies it will show WASTED text like in original GTA san andreas Link to comment
NeXuS™ Posted August 8, 2017 Share Posted August 8, 2017 You'll have to use the onPedWasted event and, depends on how you want to do it, you can use GUI, or dxElements. Link to comment
DonOmar Posted August 9, 2017 Share Posted August 9, 2017 @viktoras705 https://community.multitheftauto.com/index.php?p=resources&s=details&id=8085 Link to comment
Guest Posted August 9, 2017 Share Posted August 9, 2017 No , I want to make WASTED text like in original GTA SAN ANDREAS style . Not gta 5 Link to comment
NeXuS™ Posted August 9, 2017 Share Posted August 9, 2017 Using the provided event and the dxDrawText function, you can easily do this. Link to comment
Guest Posted August 10, 2017 Share Posted August 10, 2017 So I need to something similar like this ? addEventHandler( "onPlayerWasted", getRootElement( ), function createText ( ) Link to comment
Dimos7 Posted August 10, 2017 Share Posted August 10, 2017 function drawText dxDrawText() end addEventHandler("onClientRender", root, drawText) addEventHandler("onClientPlayerWasted", root, function() drawText() end ) Link to comment
Guest Posted August 10, 2017 Share Posted August 10, 2017 So what's now ? I am new at scripting so I don't really know what to do in next step ? 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