Jump to content

N3xT

Retired Staff
  • Posts

    2,490
  • Joined

  • Days Won

    18

Everything posted by N3xT

  1. N3xT

    [HELP] dxEdit

    Hello guys, I am trying to do a " dxEdit ", I try that but it doesn't work. local text = {} addEventHandler("onClientCharacter", root, function (c) table.insert(text,c) end ) addEventHandler("onClientRender", root, function () dxDrawText(#text, 654, 354, 778, 377, tocolor(255, 255, 255, 255), 1, f2, "left", "top", true, true, true, true, true) end ) when I press anything I got a " numbers " in the dxText, example, when I type hello, I got a number 5. so How to fix it ?
  2. فيه برنامج أنت كنت مشغله متعارض مع اللعبة
  3. ذا مثال سويته لك Client function getTime( ) local time = getRealTime( ) local h, m = time.hour, time.minute return (h % 12 and h % 12 or 12)..":"..(m < 10 and "0"..m or m).." "..(h >= 12 and "PM" or "AM") end addCommandHandler("mytime", function () outputChatBox ( getTime() ) end)
  4. لا أتوقع قصده تجارة مخدرات
  5. كودك غلط, المفروض تستعمل لوكل بلاير وناقصك إند ولازم تسوي تايمر عشان تتحقق كل شوي اذا هو يمشي ولا واقف وأيضاً لازم تتحقق من الصوت إذا موجود ولا لا غلط تقرر من راسك ؟؟ اولا فيه if or function يعني 2 اند شو خص التايمر التايمر وقت يب صح ما أنتبهت للإند عموماً جرب الكود بنفسك وتشوف يشتغل ولا لا ما تعرف أنه الكلنت نستعمل معاه لوكل بلاير
  6. حياكم الله نفر نفر @Marshmello : ما نسيته, بس بيكون بالجزء الثاني
  7. N3xT

    Drawing gif images

    Thanks all, the problem was in argument 6, you need to change it to 1
  8. #Server > local key = "F1" -- الزر bindKey(key,"down", function () triggerClientEvent(source,"show:gui",source) end ) #Client > addEvent ( "show:gui", true ) addEventHandler ( 'show:gui', root, function () if show == false then addEventHandler("onClientRender", root, dx) showCursor(true) show = true else removeEventHandler("onClientRender", root, dx) showCursor(false) show = false end end )
  9. I did not understand what you say Is it possible to respond to the Arabic language is not using Google Translator Please يقول لك, السيرفر حقك فيه مود يسبب لك الكراش ذا يعني لازم تطفي كل مودات سيرفرك وتدور عن المود الخربان, الكراش يكون بسبب مود فيه واحد من ذي الأحداث onClientPedDamage onClientPedWasted onClientPedWeaponFire onClientPedChoke onClientPedHeliKilled onClientPedHitByWaterCannon onClientPlayerDamage onClientPlayerWasted onClientPlayerWeaponFire onClientPlayerChoke onClientPlayerHeliKilled onClientPlayerHitByWaterCannon onClientObjectDamage onClientObjectBreak onClientProjectileCreation onClientVehicleCollision onClientVehicleDamage onClientExplosion المود اللي فيه حدث من ذي الاحداث ممكن هو اللي مسبب لك الكراش
  10. I found the setAccountData to be easier as it save automatically when logged in! @N3xt Thank you, I'll try it! You're Welcome.
  11. طيب وإذا دي أكس ما تعرف تعدلها ؟
  12. ServerSide = يجب وقت الخادم ClientSide = يجيب وقت اللاعب getTime = يجيب وقت اللعبة
  13. جزاك الله خير أجمعين إن شاء الله
  14. Simple example #Server local data = getAccountData(...) -- get the data triggerClientEvent(source,"accountData",source,data) -- send it to clientside #Client addEvent(...) -- event addEventHandler("accountData",root, -- event function (data) -- recepion the data from serverside outputChatBox(data) -- output the data end)
  15. N3xT

    Drawing gif images

    I convert my gif image to png, but it doesn't work after converting the image to png, it looks confused there is another way to convert it ?
  16. وعليكم السلام ورحمة الله وبركاته admin > conf > massage.xml
  17. كودك غلط, المفروض تستعمل لوكل بلاير وناقصك إند ولازم تسوي تايمر عشان تتحقق كل شوي اذا هو يمشي ولا واقف وأيضاً لازم تتحقق من الصوت إذا موجود ولا لا
  18. كودك غلط, لازم تسوي تريقر للكلنت عشان تظهر اللوحة صاحب الموضوع جرب كذا #Server > local key = "F1" -- الزر bindKey(key,"down", function () triggerClientEvent(source,"show:gui",source) end ) #Client > addEvent ( "show:gui", true ) addEventHandler ( 'show:gui', root, function () guiSetVisible(window, true) showCursor(true) end ) عدل إسم لوحتك
  19. N3xT

    Drawing gif images

    same error, I used format factory to convert it that is right ?
×
×
  • Create New...