Jump to content

Search the Community

Showing results for tags 'تعديل علي خطاء'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Multi Theft Auto: San Andreas 1.x
    • Support for MTA:SA 1.x
    • User Guides
    • Open Source Contributors
    • Suggestions
    • [Read-Only] Ban appeals
  • General MTA
    • News
    • Media
    • Site/Forum/Discord/Mantis/Wiki related
    • MTA Chat
    • Other languages
  • MTA Community
    • Scripting
    • Maps
    • Resources
    • Other Creations & GTA modding
    • Competitive gameplay
    • Servers
  • Other
    • General
    • Multi Theft Auto 0.5r2
    • Third party GTA mods
  • Archive
    • Archived Items
    • Trash

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Gang


Location


Occupation


Interests

Found 1 result

  1. السلام عليكم انا مسوي عد تنازلي للساعه يعني مثلا 01:00:00 00:59:60 00:59:59 00:59:58 لين يصير الوقت المتبقي 0 ويسوي الي ابيه ال هو # يطلع بالشات local Hour = 1 -- هنا عدد الساعات local Min = 0 local Sec = 0 function time() if Hour < 10 then Hour = "0"..Hour else Hour = Hour end if Min < 10 then Min = "0"..Min else Min = Min end if Sec < 10 then Sec = "0"..Sec else Sec = Sec end outputChatBox(Hour..":"..Min..":"..Sec,root, 255, 0, 0 ) Sec = Sec -1 if Sec <= 0 then Min = Min - 1 sec = 60 if Min <= 0 then Hour = Hour - 1 Min = 60 if Hour <= 0 and Min <= 0 and Sec <= 0 then Hour = 0 Min = 0 Sec = 0 killTimer ( Timer ) outputChatBox ("#",root, 255, 0, 0 ) end end end end Timer = setTimer(time,1000,0) ؟
×
×
  • Create New...