Jump to content

#Untied

Members
  • Posts

    87
  • Joined

  • Last visited

Everything posted by #Untied

  1. شالمشكله كدا ما عملت addEventHandler('onResourceStop',root, function () showChat(true) function (player) outputChatBox("[C.Console]: Chat has been open by " ..getPlayerName(player).. " ",root,0,255,0,true) end )
  2. هوا دا الغلط فيه الكود outputChatBox ( "[C.Console]: " .. getPlayerName(source) .. "has open chat", 255, 255, 0, true ) لما حطيط كو GETpLAYERName البتاعه لما اقفل المود ما تعمل في الشات
  3. سلام عليكم اليوم عملت مود ومش شغال الكود اهو دا المبوظ المود في getPlayer nam outputChatBox ("[C.Console]: Chat has been open by " .. getPlayerName(source) .. " ", root,255,255,0,true) ارجو تععديلو
  4. شالخطا فيه ذا؟ outputChatBox ("[C.Console]: Chat has been open by " .. getPlayerName(source) .. " ", root,255,255,0,true)
  5. يعني انا عملت مود قفل الشات وقت الاذان عاوز المود يقفل الشات لوحدو كل 2 ساعه ويجي الكلام بالشات
  6. مشكور طيب انا عامل مود قفل الشات عاوز الشات يقفل تلئقائي يعني ونا مش موجود فيه السرفر كل 2 ساعه مثلن الشات يقفل ويجي في الشات الكلام
  7. ممكن تاكود جهاز
  8. اوكي بس ممكن سوال انا عامل مود قفل الشات وعاوز لما اجي اقفل المود يجي كلام بالشات
  9. sيقلي الخطا في getPlayername
  10. مشكور شباب وين الخطاء هنا؟ outputChatBox ( "#[TeamsSysteam] " .. getPlayerName(player) .. ", Updated Your car color.", 255, 255, 0, true ) كان شغال قبل ما احد كود getPlayerName
  11. اهي مش بيطلع function Strong ( ) outputChatBox ( "#[TeamsSysteam] Abdoi Added to team by Adham",0, 255, 0, true ) outputChatBox ( "#[TeamsSysteam] Abdoi Added to team by Adham",0, 255, 0, true ) outputChatBox ( "#[TeamsSysteam] Abdoi Added to team by Adham",0, 255, 0, true ) outputChatBox ( "#[TeamsSysteam] Abdoi Added to team by Adham",0, 255, 0, true ) end addCommandHandler ( "فلوس",Strong )
  12. بكتب مش بيطلعلي حاجه
  13. سلام عليكم اليوم سويت اليكتب فلوس في الشات يظهر له الكلام بالشات ذا function Strong ( ) outputChatBox ( "#[TeamsSysteam] Abdoi Added to team by Adham",0, 255, 0, true ) outputChatBox ( "#[TeamsSysteam] Abdoi Added to team by Adham",0, 255, 0, true ) outputChatBox ( "#[TeamsSysteam] Abdoi Added to team by Adham",0, 255, 0, true ) outputChatBox ( "#[TeamsSysteam] Abdoi Added to team by Adham",0, 255, 0, true ) addCommandHandler ( "فلوس",Strong ) اكتب ما يحصل شي وملحوظه الكود دا كلنت
  14. #Untied

    #طلب

    createVehicle(ID,x,y+1,z) كيف x y z مش فاهمها؟
  15. #Untied

    #طلب

    createVehicle(ID,x,y+1,z) كيف x y z مش فاهمها؟
  16. #Untied

    #طلب

    local screenW, screenH = guiGetScreenSize() wnd = guiCreateWindow(504, 193, 296, 378, ":: Vehicle Systeam ::", false) guiWindowSetSizable(wnd, false) guiSetAlpha(wnd, 1.00) guiSetVisible(wnd, false) btn = guiCreateButton(16, 264, 270, 37, "Buy", false, wnd) close = guiCreateButton(17, 305, 269, 37, "X", false, wnd) Label = guiCreateLabel(144, 350, 185, 18, "Created By # | v1.2", false, wnd) guiLabelSetColor(Label, 255, 0, 0) grid = guiCreateGridList(9, 23, 273, 231, false, wnd) guiGridListAddColumn(grid, "Name Vehicle", 0.5) guiGridListAddColumn(grid, "ID", 0.5) bindKey ( "F6", "down", function ( ) guiSetVisible ( wnd, not guiGetVisible ( wnd ) ) showCursor ( guiGetVisible ( wnd ) ) end ) addEventHandler("onClientGUIClick",btn, function () local sel = guiGridListGetSelectedItem (grid) if sel ~= -1 then local skinID = guiGridListGetItemData (grid,sel,1) triggerServerEvent("GiveVehicle",localPlayer,ID) guiSetVisible (wnd,false) guiSetInputEnabled(false) showCursor(false) end end ,false) Cars = { {'Monster',9000,580}, {'Frary',545r,570}, } for _, v in ipairs (Cars) do local Row = guiGridListAddRow(grid) guiGridListSetItemText(grid, Row, 1, v[1], false, false) guiGridListSetItemText(grid, Row, 2, v[2], false, false) end addEvent("GiveVehicle" ,true) addEventHandler("GiveVehicle" ,root, function (ID) PMoney = getPlayerMoney(source) if PMoney >= 2500 then GiveVehicle(source ,ID) takePlayerMoney(source,2500) outputChatBox("* تم شراء الشخصيه",source ,0,255,0,false) else outputChatBox("* ليس لديك المال الكافي للشراء",source ,255,0,0,false) end end )
  17. #Untied

    #طلب

    local screenW, screenH = guiGetScreenSize() wnd = guiCreateWindow(504, 193, 296, 378, ":: Vehicle Systeam ::", false) guiWindowSetSizable(wnd, false) guiSetAlpha(wnd, 1.00) guiSetVisible(wnd, false) btn = guiCreateButton(16, 264, 270, 37, "Buy", false, wnd) close = guiCreateButton(17, 305, 269, 37, "X", false, wnd) Label = guiCreateLabel(144, 350, 185, 18, "Created By # | v1.2", false, wnd) guiLabelSetColor(Label, 255, 0, 0) grid = guiCreateGridList(9, 23, 273, 231, false, wnd) guiGridListAddColumn(grid, "Name Vehicle", 0.5) guiGridListAddColumn(grid, "ID", 0.5) bindKey ( "F6", "down", function ( ) guiSetVisible ( wnd, not guiGetVisible ( wnd ) ) showCursor ( guiGetVisible ( wnd ) ) end ) addEventHandler("onClientGUIClick",btn, function () local sel = guiGridListGetSelectedItem (grid) if sel ~= -1 then local skinID = guiGridListGetItemData (grid,sel,1) triggerServerEvent("GiveVehicle",localPlayer,ID) guiSetVisible (wnd,false) guiSetInputEnabled(false) showCursor(false) end end ,false) Cars = { {'Monster',9000,580}, {'Frary',545r,570}, } for _, v in ipairs (Cars) do local Row = guiGridListAddRow(grid) guiGridListSetItemText(grid, Row, 1, v[1], false, false) guiGridListSetItemText(grid, Row, 2, v[2], false, false) end addEvent("GiveVehicle" ,true) addEventHandler("GiveVehicle" ,root, function (ID) PMoney = getPlayerMoney(source) if PMoney >= 2500 then GiveVehicle(source ,ID) takePlayerMoney(source,2500) outputChatBox("* تم شراء الشخصيه",source ,0,255,0,false) else outputChatBox("* ليس لديك المال الكافي للشراء",source ,255,0,0,false) end end )
  18. #Untied

    #طلب

    local screenW, screenH = guiGetScreenSize() wnd = guiCreateWindow(504, 193, 296, 378, ":: Vehicle Systeam ::", false) guiWindowSetSizable(wnd, false) guiSetAlpha(wnd, 1.00) guiSetVisible(wnd, false) btn = guiCreateButton(16, 264, 270, 37, "Buy", false, wnd) close = guiCreateButton(17, 305, 269, 37, "X", false, wnd) Label = guiCreateLabel(144, 350, 185, 18, "Created By [# | v1.2", false, wnd) guiLabelSetColor(Label, 255, 0, 0) grid = guiCreateGridList(9, 23, 273, 231, false, wnd) guiGridListAddColumn(grid, "Name Vehicle", 0.5) guiGridListAddColumn(grid, "ID", 0.5) bindKey ( "F6", "down", function ( ) guiSetVisible ( wnd, not guiGetVisible ( wnd ) ) showCursor ( guiGetVisible ( wnd ) ) end )
  19. #Untied

    #طلب

    local screenW, screenH = guiGetScreenSize() wnd = guiCreateWindow(504, 193, 296, 378, ":: Vehicle Systeam ::", false) guiWindowSetSizable(wnd, false) guiSetAlpha(wnd, 1.00) guiSetVisible(wnd, false) btn = guiCreateButton(16, 264, 270, 37, "Buy", false, wnd) close = guiCreateButton(17, 305, 269, 37, "X", false, wnd) Label = guiCreateLabel(144, 350, 185, 18, "Created By [# | v1.2", false, wnd) guiLabelSetColor(Label, 255, 0, 0) grid = guiCreateGridList(9, 23, 273, 231, false, wnd) guiGridListAddColumn(grid, "Name Vehicle", 0.5) guiGridListAddColumn(grid, "ID", 0.5) bindKey ( "F6", "down", function ( ) guiSetVisible ( wnd, not guiGetVisible ( wnd ) ) showCursor ( guiGetVisible ( wnd ) ) end )
  20. او تقدر تستعمل killPed
  21. او تقدر تستعمل killPed
  22. #Untied

    #طلب

    ينفع تعدلي بعد اذنك @
  23. #Untied

    #طلب

    ينفع تعدلي بعد اذنك @
  24. #Untied

    #طلب

    ممكن الكودد جاهز
×
×
  • Create New...