Jump to content

xXSurviverXx

Members
  • Posts

    7
  • Joined

  • Last visited

Details

  • Gang
    Detroit

xXSurviverXx's Achievements

Newbie

Newbie (4/54)

0

Reputation

  1. you both have good points this is how i learned for samp scripting, and i thought this is how ill learn for mta, i have taken a look at wiki, but it does not provide as much information i need, and this server and client thing is just not provided in setTimer for wiki, its only client
  2. umm one problem the timer works great and all, but it is for each person, i want i global by that i mean if the timer is at 5:36 i want it to stay at 5:36 for the person that joins, not start all over just for him. thanks
  3. thanks so fucking much and yes i understand your"oh my god" i feel the same way thanks anyways though, you dont know how much you helped me out <3
  4. i know ur trying to help, but this is like the first script im working on for mta and its hard timer = setTimer(getTimeLeft,600000,1) function getTimeLeft(timer) dxDrawText(getTimeLeft(timer),sWidth-0,sHeight-600,sWidth-347,sHeight-0,tocolor(225,225,225,1000),1.3,"Diploma","right","top",false,false,false) -- Timer if isTimer(timer) then local ms = getTimerDetails(timer) local m = math.floor(ms/60000) local s = math.floor((ms-m*60000)/1000) if m < 10 then m = "0"..m end if s < 10 then s = "0"..s end return m..":"..s else return "--:--" end end and if you cant help with that, i have TeamViewer ill pm you the id and pass
  5. Thanks a lot man but now how do i display it on the screen this is the code i use to display health armour money and ammo on the screen dxDrawText(tostring(timer),sWidth-0,sHeight-600,sWidth-347,sHeight-0,tocolor(225,225,225,1000),1.3,"Diploma","right","top",false,false,false) -- Timer
  6. Hey all i know how to make a timer but i need the timer to display how much time is left on the screen this is the code im using to display the time left in --:-- dxDrawText(tostring (timer),sWidth-0,sHeight-600,sWidth-347,sHeight-0,tocolor(225,225,225,1000),1.3,"Diploma","right","top",false,false,false) -- Timer
×
×
  • Create New...