Jump to content

ƙἶᾗʛ-ὄʀҭʛᾄ

Members
  • Posts

    41
  • Joined

  • Last visited

Everything posted by ƙἶᾗʛ-ὄʀҭʛᾄ

  1. السلام عليكم ورحمة الله وبركاتة كل عام وانتم طيبون اما بعد اليوم صممت انا وصديقي ميمو برنس بدآية جديدة بمناسبة عيد الاضحي المبارك طبعآ البداية لسيرفرات الهجولة نيجي للصور 1- 2- 3- 4- 5- 6- 7- 8- 9- 10- 11- طولت عليكم بالصور ض1 المهم اكيد حلوه صح ؟ نيجي لرابط التحميل هذا تحميل الماب http://arabsh.com/files/0c374d4a63f4/sonik-zip.html اذا كنت تريد الاشكال التي بلون الاخضر يجب تحميل كل هذا http://arabsh.com/files/0c374d4a6cf3/g-1-zip.html ================================== http://arabsh.com/files/0c374d4a6cf0/g-2-zip.html ================================== http://arabsh.com/files/0c374d4a6cf7/g-3-zip.html ================================== http://arabsh.com/files/0c374d4a6cf6/g-4-zip.html ================================== http://arabsh.com/files/0c374d4a6cf5/g-5-zip.html ================================== http://arabsh.com/files/0c374d4a6cfb/g-6-zip.html ================================== http://arabsh.com/files/0c374d4a6cfa/g-7-zip.html ================================== http://arabsh.com/files/0c374d4a6df3/g-8-zip.html ================================== http://arabsh.com/files/0c374d4a6df2/g-9-zip.html ================================== http://arabsh.com/files/0c374d4a6df1/g-10-zip.html ================================== http://arabsh.com/files/0c374d4a6df0/g-11-zip.html ==================================== والسلام خير الختام يلا بقي عيش الحظة
  2. http://www12.0zz0.com/2013/10/14/09/959218532.png في مشكلة تاني لما اضغط علي سيارات مثآل يجي خطآ تاني لما اضغط علي الشخصيات يجي خطآ تاني كل شوي
  3. معليش اتعبك معايا سويها انت لآني مش فاهم حاجة معليش انا اسف
  4. هذا حق لما تقتل الزومبي يجيك فلوس exports.scoreboard:addScoreboardColumn('Zombie kills') addEvent("onZombieWasted",true) addEventHandler("onZombieWasted",root, function (killer) givePlayerMoney(killer,50) addPlayerZombieKills(killer) end) function addPlayerZombieKills(killer) local account = getPlayerAccount(killer) if isGuestAccount(account) then return end local zombieKills = getAccountData(account,"Zombie kills") if not zombieKills then setAccountData(account,"Zombie kills",0) end setAccountData(account,"Zombie kills",tonumber(zombieKills)+1) end addEventHandler("onPlayerLogin",root, function () local account = getPlayerAccount(source) if isGuestAccount(account) then return end local zombieKills = getAccountData(account,"Zombie kills") if zombieKills then setElementData(source,"Zombie kills",tostring(zombieKills)) else setElementData(source,"Zombie kills",0) end end) _____________________________________________________________________________________ هذا مود حق ساحة الزومبي ( يمنع الزومبي عن منطقة ) http://arabsh.com/files/0c374d4964f1/an ... e-zip.html
  5. شوف الفري روم شغال تمام بس المشكلة لازم اشغل الاصلي عشان ينزل سيارات او يشغل النور او يطفي النور او يغير الشخصية تلوين السيارة لكن لو قفلت الفري روم الاصلي وسويت رستارت للفري روم حقي مايشتغل اي شيء
  6. كلنت function guiCreateWindow( x2, y2, width2, height2, titleBarText2, relative2 ) local mainBackground = guiCreateStaticImage ( x2, y2, width2, height2, "Sonik.png", relative2 ) local mainBackgroundLabel = guiCreateLabel ( 0, 0, 250, 100, titleBarText2, false, mainBackground ) guiSetFont ( mainBackgroundLabel, newFont ) guiSetEnabled ( mainBackgroundLabel, false ) return mainBackground end CONTROL_MARGIN_RIGHT = 5 LINE_MARGIN = 5 LINE_HEIGHT = 16 g_Root = getRootElement() g_ResRoot = getResourceRootElement(getThisResource()) g_Me = getLocalPlayer() server = createServerCallInterface() guiSetInputMode("no_binds_when_editing") --------------------------- -- Set skin window --------------------------- function skinInit() setControlNumber(wndSkin, 'skinid', getElementModel(g_Me)) end function showSkinID(leaf) if leaf.id then setControlNumber(wndSkin, 'skinid', leaf.id) end end function applySkin() local skinID = getControlNumber(wndSkin, 'skinid') if skinID then server.setMySkin(skinID) fadeCamera(true) end end wndSkin = { 'wnd', text = 'Set skin', width = 250, x = -20, y = 0.3, controls = { { 'lst', id='skinlist', width=230, height=290, columns={ {text='Skin', attr='name'} }, rows={xml='skins.xml', attrs={'id', 'name'}}, onitemclick=showSkinID, onitemdoubleclick=applySkin }, {'txt', id='skinid', text='', width=50}, {'btn', id='set', onclick=applySkin}, {'btn', id='close', closeswindow=true} }, oncreate = skinInit } function setSkinCommand(cmd, skin) skin = skin and tonumber(skin) if skin then server.setMySkin(skin) fadeCamera(true) closeWindow(wndSpawnMap) closeWindow(wndSetPos) end end addCommandHandler('setskin', setSkinCommand) addCommandHandler('ss', setSkinCommand) --------------------------- --- Set animation window --------------------------- function applyAnimation(leaf) if type(leaf) ~= 'table' then leaf = getSelectedGridListLeaf(wndAnim, 'animlist') if not leaf then return end end server.setPedAnimation(g_Me, leaf.parent.name, leaf.name, true, true) end function stopAnimation() server.setPedAnimation(g_Me, false) end wndAnim = { 'wnd', text = 'Set animation', width = 250, x = -20, y = 0.3, controls = { { 'lst', id='animlist', width=230, height=290, columns={ {text='Animation', attr='name'} }, rows={xml='animations.xml', attrs={'name'}}, expandlastlevel=false, onitemdoubleclick=applyAnimation }, {'btn', id='set', onclick=applyAnimation}, {'btn', id='stop', onclick=stopAnimation}, {'btn', id='close', closeswindow=true} } } addCommandHandler('anim', function(command, lib, name) server.setPedAnimation(g_Me, lib, name, true, true) end ) --------------------------- -- Weapon window --------------------------- function addWeapon(leaf, amount) if type(leaf) ~= 'table' then leaf = getSelectedGridListLeaf(wndWeapon, 'weaplist') amount = getControlNumber(wndWeapon, 'amount') if not amount or not leaf then return end end server.giveMeWeapon(leaf.id, amount) end wndWeapon = { 'wnd', text = 'Give weapon', width = 250, controls = { { 'lst', id='weaplist', width=230, height=280, columns={ {text='Weapon', attr='name'} }, rows={xml='weapons.xml', attrs={'id', 'name'}}, onitemdoubleclick=function(leaf) addWeapon(leaf, 500) end }, {'br'}, {'txt', id='amount', text='500', width=60}, {'btn', id='add', onclick=addWeapon}, {'btn', id='close', closeswindow=true} } } function giveWeaponCommand(cmd, weapon, amount) weapon = tonumber(weapon) or getWeaponIDFromName(weapon) if not weapon then return end amount = amount and tonumber(amount) or 500 server.giveMeWeapon(math.floor(weapon), amount) end addCommandHandler('give', giveWeaponCommand) addCommandHandler('wp', giveWeaponCommand) --------------------------- -- Fighting style --------------------------- addCommandHandler('setstyle', function(cmd, style) style = style and tonumber(style) if style then server.setPedFightingStyle(g_Me, style) end end ) --------------------------- -- Clothes window --------------------------- function clothesInit() if getElementModel(g_Me) ~= 0 then errMsg('You must have the CJ skin set in order to apply clothes.') closeWindow(wndClothes) return end if not g_Clothes then triggerServerEvent('onClothesInit', g_Me) end end addEvent('onClientClothesInit', true) addEventHandler('onClientClothesInit', g_Root, function(clothes) g_Clothes = clothes.allClothes for i,typeGroup in ipairs(g_Clothes) do for j,cloth in ipairs(typeGroup.children) do if not cloth.name then cloth.name = cloth.model .. ' - ' .. cloth.texture end cloth.wearing = clothes.playerClothes[typeGroup.type] and clothes.playerClothes[typeGroup.type].texture == cloth.texture and clothes.playerClothes[typeGroup.type].model == cloth.model or false end table.sort(typeGroup.children, function(a, b) return a.name < b.name end) end bindGridListToTable(wndClothes, 'clothes', g_Clothes, false) end ) function clothListClick(cloth) setControlText(wndClothes, 'addremove', cloth.wearing and 'remove' or 'add') end function applyClothes(cloth) if not cloth then cloth = getSelectedGridListLeaf(wndClothes, 'clothes') if not cloth then return end end if cloth.wearing then cloth.wearing = false setControlText(wndClothes, 'addremove', 'add') server.removePlayerClothes(g_Me, cloth.parent.type) else local prevClothIndex = table.find(cloth.siblings, 'wearing', true) if prevClothIndex then cloth.siblings[prevClothIndex].wearing = false end cloth.wearing = true setControlText(wndClothes, 'addremove', 'remove') server.addPedClothes(g_Me, cloth.texture, cloth.model, cloth.parent.type) end end wndClothes = {
  7. السلام عليكم ورحمه الله وبركاتة مشكلة في الفري روم لازم اشغل الفري روم الاصلي عشان السيارات تنزل وكل شيء شو الحل ؟
  8. لاحول كل شيء جراند تايم حبي هيك تنحظر بدخل معاكم مبرمج مبتديء
  9. اقسم بالله العظيم انت كفو شكرآ لك مكنت اعرف والله طيب في سؤال الحين مثلآ سويت مثلك هيك بيكون في اكيد نافذه صح ؟ طيب النافذه احطها معاها ام ملف تاني ؟
  10. function() outputChatBox ("#FF0000*][#CCCCCC تم صنع البدآية من قبل اورتيجا + اوكا #FF0000][*",getRootElement(),255,255,255, true) outputChatBox ("#FF0000*][#FFFF00 افضل بدآية لعام 2014 حياكم الله #FF0000][*",getRootElement(),255,255,255, true) outputChatBox ("#FF0000*][#FFFFFF لا اله الا الله محمد رسول الله #FF0000][*",getRootElement(),255,255,255, true) outputChatBox ("#FF0000*][#0033FFحياكم الله في السيرفر #FF0000][*",getRootElement(),255,255,255, true) end ) addEventHandler ( "onPlayerJoin", getRootElement(), greetPlayer ) لماذا لم يشتغل ؟
  11. ابي كود اذا لاعب شغل مود معين يجي له by: ortiga ولما يدخل يجي له by ortig بس ابي 4 كلامات يعني by: ortiga by ahmed افضل بدايه احسن بداية لعام 2013 انتم فاهمين وكمان لما اشغلها يجي في الماب + القيم مود play by ortiga
×
×
  • Create New...