-
Posts
224 -
Joined
-
Last visited
About MrBiG
- Birthday 20/11/2001
Details
-
Gang
No Gang
-
Location
Jordan
Recent Profile Visitors
4,088 profile views
MrBiG's Achievements
Trick (18/54)
73
Reputation
-
Jw8. reacted to a post in a topic:
[Level System] : للبيع ..
-
Infinity-War started following MrBiG
-
MrBiG reacted to a post in a topic:
[SHOW] Event System - نظام المسابقات
-
فكرة بسيطة , مافي تعقيد تفكير جيد
-
MrBiG reacted to a post in a topic:
لاول مرة تعديل شكمان
-
MrBiG reacted to a post in a topic:
help / python
-
SycroX reacted to a post in a topic:
help / python
-
MrBiG reacted to a post in a topic:
GDPR'D TOPIC
-
MrBiG reacted to a post in a topic:
GDPR'D TOPIC
-
شوف اخوي https://www.dreamincode.net/forums/forum/29-python/ سجل في هذا الموقع في ناس محترفين بجميع اللغات ويساعدو ( عددهم كثير) واطرح مشكلتك افضل من هنا
-
وعليكم السلام ورحمة الله وبركاتة https://www.w3schools.com/js/js_validation.asp
-
MrBiG reacted to a post in a topic:
timer [C++]
-
وعليكم السلام شغلك كويس بس للعلم دالة Time بشتشغل على الثواني يعني اذا حطيت الوظيفة تتنفذ مرتين خلال خمس ثواني رح تتنفذ اول ثانيتين و بعد ثلالث ثواني مرة ثانية المفروض 2.5 كل مره
-
MrBiG reacted to a post in a topic:
اصنع المجتمع الخاص بك
-
MrBiG reacted to a post in a topic:
[RELEASE] Discord Webhooks
-
Saud'Faisal reacted to a post in a topic:
GDPR'D TOPIC
-
وعليكم السلام ورحمة الله "اذا كثر الطباخين خربت الطبخه"
-
MrBiG reacted to a post in a topic:
GDPR'D TOPIC
-
MrBiG reacted to a post in a topic:
[REL] bengines - simple custom vehicle sounds
-
mohmmad reacted to a post in a topic:
[Level System] : للبيع ..
-
gsub تستخدم لحذف مقطع من النص وهنا local name = getPlayerName ( localPlayer ) : gsub ( '#%x%x%x%x%x%x' , ''" ) تقوم بحذف ( # ) وست خانات بجانبه بغض النظر عن نوعها سواء اكانت ارقام او احرف من اسم اللاعب اي انها تقوم بأزالة كود الالوان من اسم اللاعب ان وجدت
-
KasaNoVa reacted to a post in a topic:
بمناسبة رجوعي عاملكم موفجأة
-
-- # Server addEvent ( "player;checkMuted" , true ) function checkismuteed ( ) if ( isPlayerMuted ( client ) ) then triggerClientEvent ( client , "player;checkedMuted" , client , true ) else triggerClientEvent ( client , "player;checkedMuted" , client , false ) end end addEventHandler ( "player;checkMuted" , resourceRoot , checkismuteed ) -- # Client addEvent ( "player;checkedMuted" , true ) function mutedPlayer ( m ) if ( m and type ( m ) == 'boolean' ) then if ( tostring ( m ) == 'true' ) then guiSetText ( err_label , "You are muted!" ) elseif ( tostring ( m ) == 'false' ) then local time = getRealTime ( ) local hours = time.hour local minutes = time.minute local seconds = time.second -- Make sure to add a 0 to the front of single digits. if (hours < 10) then hours = "0"..hours end if (minutes < 10) then minutes = "0"..minutes end if (seconds < 10) then seconds = "0"..seconds end local newText = guiGetText ( support_urmsg ) if ( ( newText ) and ( string.len ( newText ) >= 4 ) ) then guiSetText ( err_label , "" ) local oldText = guiGetText ( supp_chat ) if ( not oldText ) then oldText = "" ; end oldText = ( ( oldText ) .. "[" .. ( tostring ( hours ) ) .. "-" .. ( tostring ( minutes ) ) .. "-" .. ( tostring ( seconds ) ) .. "]" .. ( getPlayerName ( localPlayer ) ) .. ": " .. ( newText ) ) guiSetText ( supp_chat , oldText ) guiSetText ( support_urmsg , "" ) guiMemoSetCaretIndex ( supp_chat , string.len ( oldText ) ) end end end end addEventHandler ( "player;checkedMuted" , resourceRoot , mutedPlayer ) function sendChatMessage ( ) if ( ( supp_chat ) and ( isElement ( supp_chat ) ) ) then if ( guiGetText ( support_urmsg ) ~= '' ) then triggerServerEvent ( "player;checkMuted" , localPlayer ) end end end addEventHandler ( "onClientGUIAccepted" , resourceRoot , sendChatMessage ) أفضل ؟
-
هو ارسل كود وانا زبطته لاسيما انو انا ما بعرف وين بدو يسوي التريقر وممكن بستخدم التريقر بغير كود
-
Welcome back bro
-
Outlaw reacted to a post in a topic:
trigger ._.
-
-- # Server addEvent ( "mutedplayer" , true ) function checkismuteed ( ) if ( isPlayerMuted ( client ) ) then mute = true else mute = false end return mute ; triggerClientEvent ( client , "mutedplayer" , client , mute ) end addEventHandler ( "mutedplayer" , resourceRoot , checkismuteed ) -- # Client local MP ; addEvent ( "mutedplayer" , true ) function mutedPlayer ( m ) MP = m; end addEventHandler ( "mutedplayer" , resourceRoot , mutedPlayer ) function sendChatMessage ( plyr ) local time = getRealTime ( ) local hours = time.hour local minutes = time.minute local seconds = time.second -- Make sure to add a 0 to the front of single digits. if (hours < 10) then hours = "0"..hours end if (minutes < 10) then minutes = "0"..minutes end if (seconds < 10) then seconds = "0"..seconds end if ( ( supp_chat ) and ( isElement ( supp_chat ) ) ) then local newText = guiGetText ( support_urmsg ) triggerServerEvent ( "mutedplayer" , localPlayer ) if ( MP == true ) then guiSetText ( err_label , "You are muted!" ) else if ( ( newText ) and ( string.len ( newText ) >= 4 ) ) then guiSetText ( err_label , "" ) local oldText = guiGetText ( supp_chat ) if ( not oldText ) then oldText = "" ; end oldText = ( ( oldText ) .. "[" .. ( tostring ( hours ) ) .. "-" .. ( tostring ( minutes ) ) .. "-" .. ( tostring ( seconds ) ) .. "]" .. ( getPlayerName ( localPlayer ) ) .. ": " .. ( newText ) ) guiSetText ( supp_chat , oldText ) guiSetText ( support_urmsg , "" ) guiMemoSetCaretIndex ( supp_chat , string.len ( oldText ) ) end end end end addEventHandler ( "onClientGUIAccepted" , resourceRoot , sendChatMessage )
-
-- # Server function staffsonlyy ( player ) local accname = getAccountName ( getPlayerAccount ( player ) ) if ( isObjectInACLGroup ( "user." .. ( accname ) , aclGetGroup ( "Admin" ) ) ) then triggerClientEvent ( player , "speakeronlystaffs" , player ) end end -- # Client function openOrCloseGUI ( ) if ( guiGetVisible ( mainWindow ) ) then guiSetVisible ( mainWindow , false ) guiSetVisible ( linkWindow , false ) showCursor ( false ) else guiSetVisible ( mainWindow , true ) showCursor ( true ) end end addEvent ( "speakeronlystaffs" , true ) addEventHandler ( "speakeronlystaffs" , root , openOrCloseGUI ) addCommandHandler ( "speaker" , openOrCloseGUI ) bindKey ( openKey , "down" , openOrCloseGUI )
-
Outlaw reacted to a post in a topic:
مساعدة بسيطة
-
oldText = ( ( oldText ) .. "[" .. ( tostring ( hours ) ) .. "-" .. ( tostring ( minute ) ) .. "-" .. ( tostring ( second ) ) .. "]" .. ( getPlayerName ( localPlayer ) ) .. ": " .. ( newText ) )
-
Mr.Mostafa reacted to a post in a topic:
addDebugHook
-
DaHoM reacted to a post in a topic:
addDebugHook
-
DaHoM reacted to a post in a topic:
x[ أستفسار ]x شئ بقيم مود مستر كريم
-
وعليكم السلام ورحمة الله وبركاتة بحكم انه المود معه وعلى ما يبدو ان مستر كريم ناشره ايضاً open source وهو فما اظن انو في حاجه لطلب الاذن من المالك تقبل مروري أخـوك #مستر_بق
-
( Client Side )أطرح أكواد الـ بما انك مسوي ريد لأول 30000 بت فهذا رقم كبير شوي فمن المحتمل المشكلة بالكلينت
-
وعليكم السلام ورحمة الله print ( tostring ( getResourceName ( sourceResource ) ) )
