Jump to content

N3xT

Retired Staff
  • Posts

    2,490
  • Joined

  • Days Won

    18

Everything posted by N3xT

  1. You could loop all the objects then remove them all once, Read the examples.
  2. الفنكشن التالي guiGridListGetSelectedItem يرجع لك القيمة -1 اذا ما كنت محدد شيء بالقريدليست, ويستعمل للتحقق اذا كنت مختار شيء بالقريدليست ولا فاضي Returns the row and column indexes of the selected item if the specified grid list is valid and has a selected item, (-1, -1) if no item is selected, false otherwise.
  3. https://wiki.multitheftauto.com/wiki/RemoveWorldModel
  4. تأكد من الاكسبورت حقك فيه أرقمنت روت, مدري اذا صح ولا لا لأن الكلنت مافيه روت بس يمكن مود الاكسبورت فيه GUIEditor = { progressbar = {}, } window1 = guiCreateWindow(493, 783, 449, 90, "جاري سرقة البنك...", false) guiWindowSetSizable(window1, false) guiSetAlpha(window1, 1.00) guiSetVisible(window1, false) guiSetProperty(window1, "CaptionColour", "FF00FF0C") progres = guiCreateProgressBar(53, 36, 350, 34, false, window1) ------------------- الماركر ------------------------- marker = createMarker(306.03815, 2530.60400, 16.11832, 'cylinder',1,299,255,255,299) setElementDimension (marker, 0) ------------------- عند الدخول للمكاركر------------------ addEventHandler("onClientMarkerHit",marker,-- هنا انشاء حدث ان لو اللاعب راح عند الماركر function ( player ) if ( player == localPlayer and getElementType ( player ) == "player" ) then guiSetVisible(window1, true) localPlayerName = getPlayerName(localPlayer) -- أحظار اسم الاعب exports.guimessages:outputClient("#08ECF9..::[ سرقة البنك ]-[ #14F439".. localPlayerName .." #D90000 ]-[ يجاول الاعب#08ECF9]::..", root,255,255,5,true) -- اخراج صندوق دردشه في الشات tim = setTimer(function( ) guiProgressBarSetProgress(progres, guiProgressBarGetProgress(progres) + 1) if ( guiProgressBarGetProgress(progres) == 100 ) then if isTimer(tim) then killTimer(tim) end guiSetVisible(window1, false) exports.guimessages:outputClient("انتهت سرقة البنك", root,255,255,5,true) -- اخراج صندوق دردشه في الشات end end,500,0) triggerServerEvent ( "ped1",localPlayer) end end ) addEventHandler("onClientMarkerLeave", marker, function ( player ) if ( player == localPlayer and getElementType ( player ) == "player" ) then guiSetVisible(window1, false) guiProgressBarSetProgress(progres, 0) if isTimer(tim) then killTimer(tim) end end end )
  5. لا مستحيل, لأنه يشيل الجدول حق القاعدة كاملة اجل وش الفايدة منه اذا بيرجع البيانات
  6. التايمر مرة وحدة, ركز بالرقم واذا مارجعت القاعدة ماراح يضيف القيمة وراح يعطيك خطأ انه مافيه قاعدة عشان يضيف لها
  7. جرب كذا, مدري اذا راح تحتاج لانشاء الجدول بعد حذفه ولا لا لكن جرب وشوف اذا يظبط معك executeSQLQuery( "CREATE TABLE IF NOT EXISTS number ( playerId )" ) local number = 0 addCommandHandler ( "addnumber", function ( ) number = number + 1 outputChatBox("#00ff00* Script test :#ffffff Number is [ ".. number .." ] !",root,255,0,0, true) executeSQLQuery("INSERT INTO number(playerId) VALUES(?)", number ) end ) addCommandHandler ( "n", function ( ) outputChatBox("#00ff00* Script test :",root,255,0,0, true) executeSQLQuery ( 'DROP TABLE number' ) number = 0 setTimer( function() executeSQLQuery( "CREATE TABLE IF NOT EXISTS number ( playerId )" ) end, 1000, 1 ) end )
  8. طيب حط المتغير تحت تحقق الزر
  9. زي ماقال لك تريفر, حطه بالسيرفر سايد
  10. https://community.multitheftauto.com/index.php?p=resources&s=list&name=dd&descr=&category= مليان فيه 800 ماب
  11. بالكومنتي مليان مابات
  12. قيم مود ريس, وارفع عليه مابات ديربي
  13. N3xT

    Server list spam

    Hey, someone is using my clan tag on his server name without any permissions. I'm the developer of nTL, https://ntl-clan.com/index.php?/clan-roster IP : mtasa://80.211.142.28:30115
  14. الفراغات اللي بين السطور لأن فيه قيمة فارغة, تحقق ان الكلام اللي بترسله ماهو قيمة فاضية if ( text ~= nil ) then
  15. I asked a friend ( @Mirage2287 ) who told me to use fetchRemote in the first place, He told me I should use alias and nginx. I think this is the solution.
  16. I'm working on a multigamemode, so I'm trying to cache the map files in the server If the map is already cached/exist I'll use fetchRemote to read the map and build the objects, markers, etc.. but I don't know how to access the map file, Ex: fetchRemote ( "http://serverip/multigamemode/yama.map" )
  17. https://wiki.multitheftauto.com/wiki/Meta.xml
  18. Okay, this works only with client files there’s no way to access server files?
  19. I've added resource.*.http along with user.* still redirecting me to the resource browser, I don't know if this is a bug or I'm doing it wrong xd.
×
×
  • Create New...