Jump to content

w7sH

Members
  • Posts

    432
  • Joined

  • Last visited

Details

  • Gang
    w7sH

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

w7sH's Achievements

Thug

Thug (25/54)

16

Reputation

  1. تمام يعطيك العافية..
  2. وش المشكلة ؟ bindKey("z", "down", function ( ) setElementData(getPedOccupiedVehicle(localPlayer),"flash",true) engineApplyShaderToWorldTexture( myShader, "fls",getPedOccupiedVehicle(localPlayer) ) else setElementData(getPedOccupiedVehicle(localPlayer),"flash",false) engineRemoveShaderFromWorldTexture ( myShader, "fls",getPedOccupiedVehicle(localPlayer) ) end
  3. w7sH

    تعديل

    وش المشكلة؟ addEventHandler("onClientRender", root, function () local theVehicle = getPedOccupiedVehicle (source ) if theVehicle then local seconds = getTickCount() / 1000 local R = math.sin(seconds) * 80 dxDrawImage(1155, 405, 188, 128, img , R) end end )
  4. w7sH

    تعديل

    السلام عليكم .. عندي الكود هذا ابي اذا اللاعب ركب الموتر تختفي الصورة واذا نزل ترجع addEventHandler("onClientRender", root, function() local seconds = getTickCount() / 1000 local R = math.sin(seconds) * 80 dxDrawImage(1155, 405, 188, 128, img , R) end )
  5. w7sH

    طلب كود

    برضه في مشكله فالكود ولا ضبط
  6. w7sH

    طلب كود

    أصلا الكود ماضبط لا كذا ولا كذا
  7. w7sH

    طلب كود

    يطلع لي بالبرتقالي عن هذي الكلمه executeCommandHandler
  8. w7sH

    طلب كود

    ماضبط .. معي فيه مشكله بس ماتطلع بالدي بق
  9. w7sH

    طلب كود

    فعلاً ليه التيبل .. وأذا ممكن مثال
  10. السلام عليكم .. ابي كود اذا صاحب حساب معيين سجل دخول يكتب له أمر ( كوماند ) يعني كأن اللاعب كاتب كلمة بإف8 وضغط إنتر اتمنى وصلت الفكرة
  11. w7sH

    مشكلة ..

    أكتشفت مشاكل كثير في اللوحة .. ف قلت أسوي وحدة ثانيه بترتيب خاص .. شكراً لجهودكم.
  12. w7sH

    مشكلة ..

    المشكلة الأولى ضبطت ومشكور وبالنسبة لـ الكود الثاني كلنكت هذا هو triggerServerEvent("onGetSave",localPlayer) showCursor ( true ) addEvent("onPutSave",true) addEventHandler("onPutSave",root, function (puser,ppass) guiSetText(editname,puser) guiSetText(editpas,ppass) end ) addEventHandler("onClientGUIClick",root, function () local user = guiGetText(editname) local pass = guiGetText(editpas) if ( source == GUIEditor.button[1] ) then if user ~= "" and pass ~= "" then if guiCheckBoxGetSelected(GUIEditor.checkbox[1]) then triggerServerEvent("onLoginWith",localPlayer,user,pass) guiSetVisible ( GUIEditor.window[1], false ) showCursor ( false ) guiSetInputEnabled ( false ) else triggerServerEvent("onLogin",localPlayer,user,pass) guiSetVisible ( GUIEditor.window[1], false ) showCursor ( false ) guiSetInputEnabled ( false ) end else outputChatBox("* You Must Write Username Or Password",255,0,0) end elseif ( source == GUIEditor.button[2] ) then if user ~= "" and pass ~= "" then triggerServerEvent("onReg",localPlayer,user,pass) else outputChatBox("* You Must Write Username Or Password",255,0,0) end end end )
  13. w7sH

    مشكلة ..

    نفس المشكلة
  14. السلام عليكم .. عندي هنا مشكلة في التسجيل اذا كان الحساب موجود يطلع له فالشات كذا ان الحساب تم انشائه ولا يطلعان الحساب فعلاً موجود outputChatBox("* [LoginPanel]: Username = " .. user .. "",source,0,255,0) outputChatBox("* [LoginPanel]: Password = " .. pass .. "",source,0,255,0) addEvent("onReg",true) addEventHandler("onReg",root, function (user,pass) local acc = getAccount(user,pass) if acc then outputChatBox("* [LoginPanel]: Error this account realy here / هذا الحساب فعلاً موجود",source,255,0,0) else addAccount(user,pass) outputChatBox("* [LoginPanel]: Username = " .. user .. "",source,0,255,0) outputChatBox("* [LoginPanel]: Password = " .. pass .. "",source,0,255,0) end end ) والمشكلة الآخرى اذا احد سوا تسجيل دخول والحساب خطأ او ماضبط مع التسجيل تختفي اللوحة بدون مايسجل الحساب انا أبي مهما كان اللوحة ماتختفي الا لمن يسجل ويخلص من الحساب هذي كوداتالتسجيل addEvent("onLoginWith",true) addEventHandler("onLoginWith",root, function (user,pass) local acc = getAccount(user,pass) local serial = getPlayerSerial(source) if acc then logIn(source,acc,pass) outputChatBox("* [LoginPanel]: Done Login. / تم تسجيل الدخول بنجاح",source,0,255,0) AddPlayer(serial,user,pass) triggerClientEvent(source,"onCl",source) else outputChatBox("* [LoginPanel]: Error in Pass or User. / يوجد خطأ في الإسم أو الرقم السري",source,255,0,0) end end ) addEvent("onLogin",true) addEventHandler("onLogin",root, function (user,pass) local acc = getAccount(user,pass) if acc then logIn(source,acc,pass) outputChatBox("* [LoginPanel]: Done Login. / تم تسجيل الدخول بنجاح",source,0,255,0) triggerClientEvent(source,"onCl",source) else outputChatBox("* [LoginPanel]: Error in Pass or User. / يوجد خطأ في الإسم أو الرقم السري",source,255,0,0) end end )
×
×
  • Create New...