-
Posts
484 -
Joined
-
Last visited
Everything posted by isa_Khamdan
-
Use player serial instead of player name.
-
هذي مشكلتك مو مشكلتي أنا كل اللي ابغيه إنك ترجع فلوسي مثل ماقلت لي إنت بنفسك والله شاهد قلت خلال شهر والحين مر شهر ونص واساساً انت مو قد الشغله لو قدها جان مافتحت إستضافه وبلشت الناس وياك وهي اساساً مو كفو ومو جاهزه لافيها حمايه عدله ولا دعم عدل وكل يوم مشكله قبل لا تفكر تفتح إستضافه أول شي تسويه أنك تجهز كلشي وتتأكد أنه شغال 100% موب كليوم تقول صيانه ويوم تقولي مادري شنو الحين خلال الإسبوعين اللي طفيت فيهم الإستضافه تتوقع الزوار اللي يدخلون بيرجعون للسيرفرات اللي ظلت مطفيه لمده إسبوعين؟ لو تعوضني بشهرين او ثلاثه أشهر مابيتعوضون الزوار اللي خسرتني إياهم
-
موقع تشفير جديد luac.mtasa.com + خبر سيئ جدا ذذ
isa_Khamdan replied to Quited's topic in Arabic / العربية
القصد من المكتوب إن خاصيه التشفير الجديده بتكون شغاله على النسخ الجديده فقط أما باقي التشفيرات بتكون شغاله ومره ثانيه تأكد من الكلام قبل لا ترسله وتخوف الجماعه -
تم تعرف عله هجوم من ددوس وراح نتعامل مع شركات لحماية مشكال الهجوم عله سيرفرات سيتم تعامل مع شراكت وصاحب الاستضافه راح يشتري اقوه نوع حمايه وراح يتم تركيب خوادم في فرنسا وراح يتم تعويض متاسفين عله مشاكل ارجو ارسال اضافه في سكايب لانه ماوصل طرش اضافة مره ثانيه لانه ماوصلي طرشلي اضافه لانه مواصلي شي عله سكايب وطرش الرقم الي دفعت منه وراح يتم تفعيله راح يتم قفل طلبتا السيرفرات علشان راح عن قريب نقل جميع السيرفرات عله خوادم افضل وفي فرنسا وانتمنه تعجبكم هالكلام صارلي شهر ونص أسمعه وينه هالتعويض؟ أنا طلعت من عندكم وطالبت بـتعويض الفلوس اللي دفعتها لأنكم أغلقتون الإستضافه لمده أكثر من اسبوعين وبعد مافتحتون كلمتك إنت بالذات وكلمت أكثر من واحد بالدعم وكلهم كذابين كل واحد يقولي عقب شهر بيدخل التعويض في الحساب وهذي هي القصه من ذاك اليوم واحد يقولي شهر والثاني يقولي اسبوع وكله كذب في كذب وانا أعرف عده أشخاص عندهم تجربه معكم والتقييم بكون مثل الشي وفي الختام أبغي أخبر الجماعه إنه اللي يفكر ياخذ من هالإستضافه من الحين يجهز نفسه حق وجع الراس والهم لأنهم كليوم بيطفونه عليه وكليوم بطلعون له بمشكله والدعم خالينه اربعه وعشرين ساعه شغال ولو تتكلم ولا تشوف رد أبد كأنك تنفخ في قربه مقضوضه لكن مااقول الا الله يهديكم ودامكم مو قد الشغله لا تفتحون إستضافه وتبوقون فلوس الناس صح إنه المبلغ مو كبير اللي دفعته او دفعه غيري بس الحق حق وكلام الحق ماينزعل منه تعديل: حتى صاحب الإستضافه كلمته وقام ياخذ ويطعي ع مثل الموجه وكله كذب في كذب ولا شفت شي.
-
Can you give me an example for that?
-
Hello , How can I edit this code to make it show Colors in the player names ( This part is from fr_client ) function updatePlayerBlips() if not g_PlayerData then return end local wnd = isWindowOpen(wndSpawnMap) and wndSpawnMap or wndSetPos local mapControl = getControl(wnd, 'Map') for elem,player in pairs(g_PlayerData) do if not player.gui.mapBlip then player.gui.mapBlip = guiCreateStaticImage(0, 0, 9, 9, elem == g_Me and 'localplayerblip.png' or 'playerblip.png', false, mapControl) player.gui.mapLabelShadow = guiCreateLabel(0, 0, 100, 14, player.name, false, mapControl) local labelWidth = guiLabelGetTextExtent(player.gui.mapLabelShadow) guiSetSize(player.gui.mapLabelShadow, labelWidth, 14, false) guiSetFont(player.gui.mapLabelShadow, 'default-bold-small') guiLabelSetColor(player.gui.mapLabelShadow, 255, 255, 255) player.gui.mapLabel = guiCreateLabel(0, 0, labelWidth, 14, player.name, false, mapControl) guiSetFont(player.gui.mapLabel, 'default-bold-small') guiLabelSetColor(player.gui.mapLabel, 0, 0, 0) for i,name in ipairs({'mapBlip', 'mapLabelShadow'}) do addEventHandler('onClientGUIDoubleClick', player.gui[name], function() server.warpMe(elem) closeWindow(wnd) end, false ) end end local x, y = getElementPosition(elem) x = math.floor((x + 3000) * g_MapSide / 6000) - 4 y = math.floor((3000 - y) * g_MapSide / 6000) - 4 guiSetPosition(player.gui.mapBlip, x, y, false) guiSetPosition(player.gui.mapLabelShadow, x + 14, y - 4, false) guiSetPosition(player.gui.mapLabel, x + 13, y - 5, false) end end
-
Help please it's just one thing and I am done
-
How can I make the text global variable like how you did and use the player as index
-
Nvm I got it working and thanks to you Edit : no it's not
-
I should do the same for he text in the server side?
-
Which part did you edit so I can see how did you do it and do the same
-
I did but nothings happened? else where the outputs get saved?
-
Nothings happen when I press compile?
-
Can anyone help me ?
-
I didn't try anythings yet I searched the code for the part you edited to do the same for the text but I didn't found it because when I copy the code it get messed up with a lot of spaces between line
-
Ok I will try I didn't figure out how to do it
-
The timer never get stuck now but the timer will still show in the screen even when you get released and the timer is 0
-
http://pastebin.com/LwpLEMEx
-
Can you give me little help to do that because I never made a table before maybe some wiki links will be helpful
-
How can I fix it?
-
Thanks a lot Castillo , Can you please view my other theard " Little help needed " ?
-
It didn't save the old speed and set it again when you leave
-
is there another way to force the car to slow down while it's inside the area without changing the handling?