-
Posts
3,389 -
Joined
-
Last visited
-
Days Won
55
Everything posted by Master_MTA
-
انت خلك ورأي ورأي ههههه أنا شخص ما لعبت ٥ ولا ٤ عشان اعرف صراحة حبيبي منور
-
+201011860707 ان بغيت
-
هههه حبيب قلبي أنا لسا فيها اَي وقت وأبشر اقابلك
-
بعض الصور من الكافيه اللي جالس فيه مقابل كوبري ستالي صور للميلفن كيك اللي جالس اكله
-
قلي الامور الباقيه الغالي
-
حبيب قلبي تسلم تسلملي يا غالي دايما تتحفني باقتراحاتك باذن الله ان عشت وما اعتزلت الاصدار القادم بيكون فيه الاقتراحات ذي لكن صراحه ما شفته ابد بجراند 5 عشان لا احد يقول مقلد
-
واذا اللاعب دخل مره ثانيه كيف تجيب صورته؟
-
على راسي يا بعد قلبي اسلوبك صراحه اعجبني لكن قولي فكره وانا انفذها يرجل مافي الافكار انعدمت
-
كلها نفس الفكره تعتمد على قواعد البيانات لكن المشكله ما عندي منتدى ومابي اسوي مجاني +_+
-
ههههههههه حبيب قلبي <3 شرايك مسوي منشن بعد يولد مدري صراحة عن سيرفرات سوتها قبلي الزبده انت سيرفراتك مجهوله محد يدري عنها عشان كذا
-
وعليكم السلام صحيح لكن النقد شي سهل ترا وانا بعض الاحيان اسوي مثلك ما اكذب لكن الحين انا اخذت فكره وطبقتها عندي تمام الحين معنى كذا اني زرفت المود؟ زرفت تعبهم؟ ما زرفت لا مود ولا تعبهم بالعكس سويت المود بعرق جبيني تعبت عليه جلست ساعات اشتغل عشان يعطي الكفاءة المطلوبة وبالنهاية يطلع واحد بعد ذاك التعب كله يقولي حرامات لا لا امزح المهم بالنهاية يطلع واحد بعد التعب ذا يقولي مقلدين سيرفر كذا يخوي خلاص تعال قلد سيرفرنا نسخه طبق الاصل ومحنا قايلين لا اتحداك على الاقل تسوي القيم مود اللي انا سويته على الاقل اتكلم عن شغلي مدري عن شغل غيري القيم مود استغرق مني تقريبا ليلتين او ليله ونص وانتهيت منه لكن المشكله مب هنا المشكله الوقت اللي ضيعته بالقيم مود ذا مب محسوب ؟ خلاص تعبي كله راح عشان في افكار متشابهه وللمعلوميه القيم مود الخاص فينا فريد من نوعه بحيث لكل لاعب profile خاص به وكامل الجيم مود dx فوق كل ذا خاصية صورة الprofile image ما شفتها لا بسيرفر عربي ولا انجليزي واللي هي تسمحلك تسوي لك صورة خاصه فيك عبر الرابط صوره طبيعي ويوم تخش ثاني مره يرحب فيك ويجيبلك صورتك @N3xT ما انكر اني اخذت سالفة loading من الاخ وعلى راسي لكن هو مستخدمه بطريقه ثانيه وشكل اخر الحين التعب ذا كله والشغل وليلتين من عمري ترا الوقت غالي مب رخيص تجي تقولي مقلدين عشان مودين ولا 3 زي سيرفر اخر عصبتني ياخي الله يهديك
-
حبايب قلبي مشكورين
-
احم احم بالتوفيق لنا كان ناقصك توريهم القيم مود حقي @@
-
مشكور على الاهداء واصل يا عسل
-
بالتوفيق لك يا غالي لكن القسم الغلط
-
وانت بخير وصحه وسلامة وكل عام وانتم جميعا وجميع المسلمين بالف خير وعافيه
-
i am already created a useful function to disable a high of marker u can use it but u should add marker event's like that addEventHandler('onMarkerHit',here should be marker not root,function() ..etc ) source code: function disableMarkerHighet(themarker,evname,high,tt) assert ( type ( evname ) == "string", "Bad Argument @ 'EventName' [ Expected string at argument 2, got " .. type ( evname ) .. " ]" ) local ta,x,y,z={},getElementPosition(themarker) if #getEventHandlers( evname, themarker )==0 then error('No functions Handlers for this marker') return end for k,v in ipairs(getEventHandlers( evname, themarker ))do removeEventHandler(evname, themarker, v) table.insert(ta,v) end local tt=tt or false addEventHandler(evname,themarker,function(plr,dim) if dim==tt or (tt==false and dim==true) then local xp,yp,zp=getElementPosition(plr) if zp<=z+high then for k,v in ipairs(ta)do v(plr,dim) end end end end) end put it on the first of the file and the syntax is: disableMarkerHighet(element marker,string eventname,int high,bolean tt) the arguments is: marker: the marker which you want to disable high for it eventname: maybe be 'onMarkerHit' or 'onMarkerLeave' or 'onClientMarkerHit' or 'onClientMarkerLeave' high: type( number) the allowed high to post the event tt: for check the dim when player hit or leave the marker u can leave it and didn't right any thing in it now let's show you some examples: example 1 wrong example: local marker=createMarker(0,0,0,'clyinder',17,255,255,255) disableMarkerHighet(marker,'onMarkerHit',10,true)---------------wromg place the disable function must be after the event wich you want addEventHandler('onMarkerHit',marker,function() outputChatBox('wrong Example') end) -----------------like herer example 2 also wrong : local marker=createMarker(0,0,0,'clyinder',17,255,255,255) addEventHandler('onMarkerHit',root----[[should be here marker or function will not work]]--------------------- root must be the marker or the function will not work ,function() if source==marker then outputChatBox('wrong Example') end end) disableMarkerHighet(marker,'onMarkerHit',10,true) example 3 right example : local marker=createMarker(0,0,0,'clyinder',17,255,255,255) addEventHandler('onMarkerHit',marker ,function() outputChatBox('wrong Example') end) disableMarkerHighet(marker,'onMarkerHit',10,true) that function if you was higher than 10 from marker then the event attached to marker will not work hope that was help you
-
vehicle_fire is not a key name check the wiki page for bind Key
-
any time
-
isElementWithinMarker
-
you can use php to do that? maybe that can help you http://php.net/manual/en/function.ftp-put.php
-
addCommandHandler('getall',function(plr) local acc=getPlayerAccount(plr) if not acc then return end local accname=getAccountName(acc) if not isObjectInACLGroup('user.'..accname,aclGetGroup('Console')) then return end local elements=getElementsByType('player') if #elements==0 then return end local x,y,z=getElementPosition(plr) local int=getElementInterior(plr) local dim=getElementDimension(plr) for k,v in ipairs(elements)do if v~=plr setElementDimension(v,dim) setElementInterior(v,int,x,y,z+2) outputChatBox('#33ff00you have been warapped to ['..getPlayerName(plr)..'#33ff00] by admin system ',v,255,255,255,true) end end end) try this
-
who is the source? source local playerGame = getElementData(source, "player:game") or false show us your full code with your event we can't help you without it
-
؟؟؟ css? html? ما اشوفها صعبه بالطريقه ذي