Jump to content

Litha-Scripter

Members
  • Posts

    2
  • Joined

  • Last visited

Everything posted by Litha-Scripter

  1. What do you mean you can not get billed for what I do I asked for help and did not ask billed Please Hist
  2. Welcome Guys I want to help me to edit a 2 Script me All I want to do that computes DM / Total win DM / Total Game ScreenShoot i want your help please i wait post all to help me this is client bindKey ( "F2" , "down" , function() if ( guiGetVisible ( GUIEditor_Window[1] ) == true ) then guiSetVisible ( GUIEditor_Window[1] ,false ) showCursor (false ) guiSetInputEnabled(false) elseif ( guiGetVisible ( GUIEditor_Window[1] ) == false ) then guiSetVisible ( GUIEditor_Window[1] ,true ) showCursor (true ) end end ) GUIEditor_Window = {} GUIEditor_TabPanel = {} GUIEditor_Tab = {} GUIEditor_Window[1] = guiCreateWindow(436,237,614,348,"Xtreme Power [ UserPane ]",false) guiSetAlpha(GUIEditor_Window[1],1) GUIEditor_TabPanel[1] = guiCreateTabPanel(9,26,596,313,false,GUIEditor_Window[1]) stats = guiCreateTab("Stats",GUIEditor_TabPanel[1]) --------------------- playerName = guiCreateLabel(15,30,300,70,'Your Name :',false,stats) guiLabelSetColor(playerName,255,120,0) guiSetFont(playerName,"default-bold-small") guiSetText ( playerName, getPlayerName(localPlayer)) function refreshStats() if guiGetVisible(stats,true) then playerName(playerName," "..getPlayerName(getLocalPlayer())) else guiSetText(playerName,"Your Name : "..getPlayerName(getLocalPlayer())) end end addEventHandler("onClientRender", getRootElement(), refreshStats) --------------------- playermoney = guiCreateLabel(15,50,300,70,'Your Money :',false,stats) guiLabelSetColor(playermoney,255,120,0) guiSetFont(playermoney,"default-bold-small") guiSetText ( playermoney, getPlayerMoney(localPlayer)) function refreshStats() if guiGetVisible(stats,true) then playerName(playermoney," "..getPlayerMoney(getLocalPlayer())) else guiSetText(playermoney,"Your Money : "..getPlayerMoney(getLocalPlayer())) end end addEventHandler("onClientRender", getRootElement(), refreshStats) --------------------- totalgamesdm = guiCreateLabel(15,70,197,42,"DM / Total Games : ",false,stats) guiLabelSetColor(totalgamesdm,255,120,0) guiSetFont(totalgamesdm,"default-bold-small") --------------------- totalwindm = guiCreateLabel(15,90,197,42,"DM / Total Wins : ",false,stats) guiLabelSetColor(totalwindm,255,120,0) guiSetFont(totalwindm,"default-bold-small") ---------------------
×
×
  • Create New...