-
Posts
233 -
Joined
-
Last visited
-
Days Won
5
Everything posted by #Mr.Pop
-
$n = 0; function calc(int $x ,$o, int $y){ switch ($o) { case "+": $n = $x + $y ; break; case "-": $n = $x - $y ; break; case "*": $n = $x * $y ; break; case "/": $n = $x / $y ; break; default: $n = "SENTEX ERROR!" ; } return $n ; } echo " = ". calc(1,"+",3) ; SIMPLE CALC FUNCTION
- 1 reply
-
- 1
-
شكرا لك انا في طريقتي كنت اقصد بها مثلا : outputChatBox(" #ff5252[ #ff9f1a ".. addZero ( hour ).. "-".. addZero ( minute ) .. "-"..addZero ( second ).. " ".. addZero ( day ).. ":".. addZero ( month ).. ":".. addZero ( year ).. " #ff5252 ]",thePlayer,120,120,0, true)
-
SIMPLE FUNCTION ADD 0 Before Number Used in : time ... 3:5-- 03:05 A.M function addZero (n) if string.len(n) == 1 then return string.rep("0", 1) .. n else return n end end OR : function addZero (i,n) if string.len(n) == 1 then return string.rep("0", i) .. n else return n end end نشرته لان في ناس يمكن تبحث عنه او تحتاجه وشكرا ملقيت اسم للفكشن الي يعرف شو اسمه يخبرني
-
تسلم حبيبي اقتراحاتك مميزة ان شاء الله بطبقها في التحديث الجاي
-
حبيبي قلبي تسلم للأسف كانت نعي ضروف
-
تسلم حبيبي قلبي
-
سكربت رائع بالتوفيق لك حبيبي
-
تسلم حبيبي حبيبي قلبي تسلم شكرا لك حبيبي
-
MTA Script :Damage Log v 1.0.0 Roleplay SQL Add DLog.sql in localhost/phpmyadmin add Clear Table Link In Desciption Video اسف على الجودة اهداء لكل المنتدى
-
شكل رهيب بالتوفيق شكرا على الاهداء امام افضل الناس ♥
-
ان شاء الله شكرا لك حب بالتوفيق لي واليك ان شاء الله
-
4ACM-HOST|linux Vps - Windows VPS - Game Servers - Anti-DDos
#Mr.Pop replied to Dr.Marco's topic in الاستضافات
متى الرجوع شباب ؟ كل شيئ راح يعني ؟ بالتوفيق -
python 50% انا جربتها في حاسوبي وضبطت >>Poper = 5 >>print(Poper) >>5 >>Poper += 5 >>print(Poper) >>10 ويمكن تكون جافا سكربت صورة توضح و C# 300%
-
وين البرنامج وكيف اشغله ؟
-
بالتوفيق اخوي كمل
- 2 replies
-
- 1
-
- مودات حياة واقعية
- مود سيفتي سيارة الشرطه الجديد
- (and 3 more)
-
اهنيك والله مفيد كثير شغل رائع كمل يا مبدع
- 14 replies
-
- 1
-
- killerproject
- db
-
(and 1 more)
Tagged with:
-
هو لم يكتب و يضغط على الزر راح يتغير النص الى تاريخ اليوم
-
يب بس لم احط لم احط الشهر والعام ميشتغل
-
addEventHandler("onResourceStart", resourceRoot, function() executeSQLQuery("CREATE TABLE IF NOT EXISTS newspaper( Text , Serial )") executeSQLQuery("CREATE TABLE IF NOT EXISTS monthday( time ,monthday, Serial )") end ) addEvent("Trigger:Add",true) addEventHandler("Trigger:Add",root,function(Partage) local Serial = getPlayerSerial(source) local time = getRealTime() local month = time.month if Partage and time then executeSQLQuery("INSERT INTO newspaper (Text , Serial ) VALUES ( ? , ? )",Partage,Serial) executeSQLQuery("INSERT INTO monthday (time,monthday , Serial ) VALUES ( ? , ? ,? )",time,month,Serial) triggerEvent("Trigger:All",source) end end ) addEvent("Trigger:All",true) addEventHandler("Trigger:All",root,function() local SQL_ = executeSQLQuery("SELECT * FROM newspaper WHERE Serial = ? ",getPlayerSerial ( source )) local dSQL_ = executeSQLQuery("SELECT * FROM monthday WHERE Serial = ? ",getPlayerSerial ( source )) if #SQL_ ~= 0 and #dSQL_ ~= 0 then triggerClientEvent ( source, 'Trigger:TPClient' , source , SQL_ ,dSQL_) end end) ------------- addEventHandler("onClientResourceStart", resourceRoot, function() --------- news Paper Network Ls PANEL_NLS = guiCreateWindow(405, 20, 458, 549, "Control Of The Newspaper ", false) guiWindowSetSizable(PANEL_NLS, false) guiSetVisible(PANEL_NLS,false) MEMO_NLS = guiCreateMemo(9, 21, 439, 476, "", false, PANEL_NLS) EDIT_NLS = guiCreateButton(11, 508, 192, 31, "send Newspaper", false, PANEL_NLS) EXIT_NLS = guiCreateButton(246, 507, 192, 31, "Exit", false, PANEL_NLS) ----- news Paper Player newspaper = guiCreateStaticImage(286, 26, 776, 430, ":newspaper/Accessories/newspaper.png", false) guiSetVisible(newspaper,false) newspaper_data = guiCreateEdit(105, 72, 111, 19, "", false, newspaper) guiEditSetReadOnly(newspaper_data, true) newspaper_news = guiCreateMemo(43, 133, 636, 224, "", false, newspaper) guiMemoSetReadOnly(newspaper_news, true) end ) bindKey("F9","down",function (player) guiSetVisible ( newspaper , not guiGetVisible ( newspaper ) ) showCursor ( guiGetVisible (newspaper) ) return guiGetVisible ( newspaper ) == true and triggerServerEvent("Trigger:All",localPlayer) end ) addEvent("Trigger:TPClient",true) addEventHandler("Trigger:TPClient",root,function(Table,Dates) for i , v in ipairs (Table) do for k , p in ipairs (Dates) do guiSetText(newspaper_news,v.Text) guiSetText(newspaper_data,p.month) end end end) bindKey("F5","down",function (player) if getElementData(localPlayer, "faction") == 20 then -- LSN guiSetVisible ( PANEL_NLS , not guiGetVisible ( PANEL_NLS ) ) showCursor ( guiGetVisible (PANEL_NLS) ) return guiGetVisible ( PANEL_NLS ) == true and triggerServerEvent("Trigger:All",localPlayer) end end ) addEventHandler("onClientGUIClick",root,function() if source == EDIT_NLS then local Partage = guiGetText(MEMO_NLS) triggerServerEvent("Trigger:Add",localPlayer,Partage,monthday) elseif source == EXIT_NLS then guiSetVisible (PANEL_NLS,false) showCursor ( false ) end end )
-
السلام عليكم كيف الاحواال شباب الموضوع : انا سويت لوحة فيه اوديت وفي لوحة اخر تحدتوي على ميمو و في زر المشكل : بدي لم اللعب يضغط على زر راح يضهر له الوقت الي كتب فيه لكن مش راضي الكود -- سيرفر addEvent("Trigger:Add",true) addEventHandler("Trigger:Add",root,function(Partage) local Serial = getPlayerSerial(source) local time = getRealTime() local month = time.month if Partage and time then -- executeSQLQuery("INSERT INTO newspaper (Text , Serial ) VALUES ( ? , ? )",Partage,Serial) -- غير مهم executeSQLQuery("INSERT INTO monthday (time,monthday , Serial ) VALUES ( ? , ? ,? )",time,month,Serial) triggerEvent("Trigger:All",source) end end ) -- كلينت addEvent("Trigger:TPClient",true) addEventHandler("Trigger:TPClient",root,function(Table,Dates) --for i , v in ipairs (Table) do -- غير مهم for k , p in ipairs (Dates) do -- guiSetText(newspaper_news,v.Text) -- غير مهم guiSetText(newspaper_data,p.month) end end end) --[[ بدي اعط شهر انا لم احط اليوم يشتغل بس لم احط الشهر ميضهر مفهمة !!!!؟ ]] هيك ي