Jump to content

# DHwROk ~

Members
  • Posts

    67
  • Joined

  • Last visited

Everything posted by # DHwROk ~

  1. آبدآإع ويعصصب بسسرعهه هههههههههه وإصصل ي مبدع ذذ
  2. طيب تعرف كيف اعرف السكربت الي فيه المشكله ؟
  3. ششوف ذي كودات ملف السيرفر addCommandHandler("Tag", function(player) local account = getPlayerAccount(player) if account and not isGuestAccount(account) then if isObjectInACLGroup("user." .. getAccountName(account), aclGetGroup("Console")) then triggerClientEvent(player, "openTagPanel", player) end end end) addEvent("onTagAction", true) addEventHandler("onTagAction", root, function(accountName, newValue) local account = getAccount(accountName) if account then setAccountData(account, "TagData", newValue) if newValue then outputChatBox("# تـم تركيب التاج بنجاح", source, 0, 255, 0) else outputChatBox("# تـم حذف التاج بنجاح", source, 0, 255, 0) end else outputChatBox("لآيوجد آسم آلحساب هذا لـ تركيب التاج له !", source, 255, 0, 0) end end)
  4. م حطيت الكود ولاشيء
  5. شوف خخرب علي السيرفر كآمل , صرت م اقدر الصق بسيرفر كله
  6. عرفت المشكله من تاج الادمن اذا طفى التاج الادمن يشتغل المود ويلصق الححين ابي ادمجه كيف ؟ وأسف إذا تعبتكم ويآي !!
  7. كتبتها ططلع لي , * ERROR: Client (Mr.DHoROk) triggered serverside event sa, but event is not added serverside انت مسوي ترايقر ماله استقبال في السيرفر يعني ماضفته في ملف السيرفر ! كيف اضيفه ؟
  8. أجل المشكلة من الروم شف سكربتاتك ذذذ م فهمت ؟
  9. أنت الوحيد الي ما يلصق معه؟ يمكن المشكلة منكـ أنت بس !؟ لا مو بس انا حتى خويي الي معي بسيرفر يقول م اقدر الصق ؟
  10. ماادري جربت اكثر من مرهه اني الصق بس مـآيلصق
  11. كتبتها ططلع لي , * ERROR: Client (Mr.DHoROk) triggered serverside event sa, but event is not added serverside
  12. المود إذا كنت بـ سيرفر الخاص اقدر انسخ والصق واكتب و كل شيء ~ بس السيرفر آلي بلخادم م آقدر الصقه و يجيب الاق "~!
  13. يب جربت وكلش و ماضبط , يمكن فيه
  14. سسلآم عليكم سويت مود تاجات الخاصة و فيها اخطاء الخطاء اني م اقدر الصق في الاديت ابي اعرف وش الخطاء ؟ الكودات : local sx, sy = guiGetScreenSize() GUIEditor = { button = {}, window = {}, label = {} } Name = {} Name_Tag = {} GUIEditor.window[1] = guiCreateStaticImage(463, 217, 479, 380, "HTLR.png", false) guiSetVisible ( GUIEditor.window[1], false ) Add_Tag = guiCreateButton(18, 289, 142, 27, "تـركيب التاج #", false, GUIEditor.window[1]) guiSetProperty(Add_Tag, "NormalTextColour", "FFFAE500") Delete_Tag = guiCreateButton(315, 289, 141, 27, "حـذف آلتاج #", false, GUIEditor.window[1]) guiSetProperty(Delete_Tag, "NormalTextColour", "FFFAE500") Name_Tag.De = guiCreateEdit(318, 211, 138, 21, "", false, GUIEditor.window[1]) GUIEditor.label[1] = guiCreateLabel(341, 186, 89, 15, "[ اسم الحساب ]", false, GUIEditor.window[1]) guiSetFont(GUIEditor.label[1], "default-bold-small") guiLabelSetColor(GUIEditor.label[1], 0, 40, 246) GUIEditor.label[2] = guiCreateLabel(43, 145, 89, 18, "[ اسم الحساب ]", false, GUIEditor.window[1]) guiSetFont(GUIEditor.label[2], "default-bold-small") guiLabelSetColor(GUIEditor.label[2], 0, 40, 246) GUIEditor.label[3] = guiCreateLabel(53, 209, 74, 18, "[ اسم التاج ]", false, GUIEditor.window[1]) guiSetFont(GUIEditor.label[3], "default-bold-small") guiLabelSetColor(GUIEditor.label[3], 0, 40, 246) Name.Tag = guiCreateEdit(22, 232, 138, 21, "", false, GUIEditor.window[1]) Name_Tag.Ad = guiCreateEdit(22, 168, 138, 21, "", false, GUIEditor.window[1]) GUIEditor.label[4] = guiCreateLabel(142, 83, 194, 27, "彡[ Welcomє Tσ Gnooη Serveʀ ]彡", false, GUIEditor.window[1]) guiSetFont(GUIEditor.label[4], "default-bold-small") guiLabelSetColor(GUIEditor.label[4], 248, 0, 0) GUIEditor.label[5] = guiCreateLabel(109, 10, 260, 23, ".:[ Tag Players By : MR.CR[A]SH | Mr.syria ]:.", false, GUIEditor.window[1]) guiSetFont(GUIEditor.label[5], "default-bold-small") GUIEditor.button[1] = guiCreateButton(456, 57, 17, 32, "✖", false, GUIEditor.window[1]) guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFF90000") addEvent("openTagPanel", true) addEventHandler("openTagPanel", root, function() if guiGetVisible(GUIEditor.window[1]) then guiSetVisible(GUIEditor.window[1], false) showCursor(false) else guiSetVisible(GUIEditor.window[1], true) showCursor(true) end end) addEventHandler("onClientGUIClick", guiRoot, function(button) if button == "left" then if source == Add_Tag then local accountName = guiGetText(Name_Tag.Ad) if accountName and accountName ~= "" then local newTag = guiGetText(Name.Tag) triggerServerEvent("onTagAction", localPlayer, accountName, newTag) end elseif source == Delete_Tag then local accountName = guiGetText(Name_Tag.De) if accountName and accountName ~= "" then triggerServerEvent("onTagAction", localPlayer, accountName, false) end end end end) addEventHandler("onClientGUIClick",resourceRoot, function ( ) if ( source == GUIEditor.button[1] ) then guiSetVisible(GUIEditor.window[1],false) showCursor(false) end end )
  15. . آيه نعم مايطلع الكلام !
  16. onClientGUIClick حول الحدث لـ احوله الحدث ؟
  17. # | سسلآم عليكم ورححمة اللهه وبركاتهه ~ # | كيفكم آن ششاءالله بخخير ؟ ~ # | آلمهم آليوم آبي كود ~ # | كود الكلام الي يجي على جمب ويروح يعني مثلن اضغط على زر يجي كلام على جمب ويروح ~ # | اتمنى انكم فهمتو ♥
  18. آمين ويآكك ’ ححآولت لآكن خربت آللوحة كلها اطرح الأكواد الي سويتها. سويت آكثر من مرهه و آحآول و طلعت خخطآء , وحذفتهم كلهم
  19. آمين ويآكك ’ ححآولت لآكن خربت آللوحة كلها
×
×
  • Create New...