Jump to content

[help]Freeze/unFreeze/givejetpack/removejetpack


Best-Killer1

Recommended Posts

Posted

i tried to make staff panel it's work fine but when i freez player i can't unfreez also jetpack too

code :

addEvent ("OnCheckButtonFreeze", true) 
addEventHandler ("OnCheckButtonFreeze", root, 
function ( thePlayer ) 
   if ( isElementFrozen ( thePlayer ) ) then 
     guiSetText(ButtonFreeze, "Freeze") 
     guiSetText(ButtonFreezePlayer, "Unfreeze") 
   else 
      guiSetText(ButtonFreeze, "Unfreeze") 
      guiSetText(ButtonFreezePlayer, "Freeze") 
    end 
end) 
  
addEvent ("OnCheckButtonJetPack", true) 
addEventHandler ("OnCheckButtonJetPack", root, 
function ( thePlayer ) 
  if ( doesPedHaveJetPack ( thePlayer ) ) then 
     guiSetText(ButtonGiveJetPack, "GiveJetpack") 
     guiSetText(GiveJetPackPlayer, "RemoveJetPack") 
  else 
     guiSetText(ButtonGiveJetPack, "RemoveJetPack") 
      guiSetText(GiveJetPackPlayer, "GiveJetPack") 
    end 
end) 

Posted

That code doesn't seem to help at all.

What are 'ButtonGiveJetPack' and 'GiveJetPackPlayer'? both are buttons?

Please do not PM me with scripting related question nor support, use the forums instead.

Posted

You should provide the code that freezes/gives jetpack, since that code only changes the button text and it doesn't seems to have any bugs.

Please do not PM me with scripting related question nor support, use the forums instead.

Posted
You should provide the code that freezes/gives jetpack, since that code only changes the button text and it doesn't seems to have any bugs.

already it's fixed :) thanks you for trying for help :)

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...