-
Posts
1,468 -
Joined
-
Last visited
-
Days Won
22
!#NssoR_) last won the day on February 19
!#NssoR_) had the most liked content!
About !#NssoR_)
- Birthday 12/01/1997
Member Title
- Global Moderator
Details
-
Location
Kuwait
-
Interests
Exchange experience
Recent Profile Visitors
9,402 profile views
!#NssoR_)'s Achievements

Loc (38/54)
564
Reputation
-
Please don't duplicate your topic , just wait for the answer.
-
https://wiki.multitheftauto.com/wiki/DxDrawLine3D
-
You can use : https://wiki.multitheftauto.com/wiki/IsVehicleUpgraded
-
[Question] Comparing strings to change dxDrawText?
!#NssoR_) replied to Linux_Shines's topic in Scripting
Locked.- 1 reply
-
- 1
-
-
Please read the rules of the section about how to post an appropriate topic for this section and rules.
-
Hi, This's the wrong section , So if you want someone to make your own gamemode post your request about the scripter here but don't forget to read the section's rules before posting. Or if you want to looking for a free gamemodes you can search here or in the resources section ( resources section some of them are free and some are paid ).
-
This is the wrong section , please check ( Scripting and Tutorials ) these sections. Also you can find a section about Scripting in your native language here. Or check the Wiki there's some tutorials about Scripting and GUI.
-
https://wiki.multitheftauto.com/wiki/OnPlayerConnect
-
اللهم صل وسلم وبارك على نبينا وحبيبنا محمد وعلى آله وصحبه أجمعين ?
-
خله يقدم طلب فك باند في القسم الصحيح https://forum.mtasa.com/forum/180-ban-appeals/ يغلق!
-
عيدكم مبارك وعساكم من عواده ..?
-
اللهم صل وسلم وبارك على نبينا وحبيبنا محمد وعلى آله وصحبه أجمعين
-
مبارك عليكم الشهر الكريم , وكل عام وانتم بخير
-
اللهم صل وسلم وبارك على نبينا وحبيبنا محمد وعلى آله وصحبه أجمعين
-
local FPSLimit, lastTick, framesRendered, FPS = 100, getTickCount(), 0, 0 addEventHandler("onClientRender",root, function() local currentTick = getTickCount() local elapsedTime = currentTick - lastTick if elapsedTime >= 1000 then FPS = framesRendered lastTick = currentTick framesRendered = 2 else framesRendered = framesRendered + 1 end if FPS > FPSLimit then FPS = FPSLimit end local playerPing = getPlayerPing ( localPlayer ) local money = getPlayerMoney ( localPlayer ) local TheTeam = 'Police' local xP = getPlayersInTeam(getTeamFromName(TheTeam)) local teamx = 'Civilians' local xV = getPlayersInTeam(getTeamFromName(teamx)) local bank = getElementData(localPlayer, "Bank") or 0 dxDrawText(" #ff0000Civilians: "..#xV.." #bb0000| #0087f7Police: #ffffff"..#xP.." #bb0000| #00ff00FPS: #EEFFEE"..tostring(FPS).." #bb0000| #990099Ping: #EEFFEE"..playerPing.." ms #bb0000| #999999CASH: #ffffff"..money.." #bb0000| #00ffffBANK:#ffffff "..bank, 13, 996, 1280, 1020,tocolor(0,153,255,255),1,"default-bold","left","center",false,false,true,true) end )