Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 31/12/17 in all areas

  1. Hey every! Happy New Year! DGS wouldn't stay at last year. Here is an update : 2.97 which is synchronized to github. To view update log : http://angel.mtaip.cn:233/dgsUpdate/ Our Command: updatedgs
    2 points
  2. Hello there, I have just made a loading screen that looks pretty familiar. Perfect for long downloads or custom maps that are way too big to get loaded entirely at once (which is exactly the purpose of the script, xD).
    2 points
  3. Virtual Box should work fine normally. And if you want to test network related things, I would suggest WANem. WIth that you can fake latency and other network issues. Very helpful to find out how your scripts will act with someone who has 500 ping instead of 0 as you on your local server.
    1 point
  4. You'll only need the player https://www.vmware.com/products/workstation-player/workstation-player-evaluation.html ~90 MB
    1 point
  5. value الي v الراجل قالك اكتر من مره غير اسم المتغير من عادي يحصل خطاء كتابي في اسم المتغير
    1 point
  6. Here you go: https://my.vmware.com/en/web/vmware/info/slug/desktop_end_user_computing/vmware_workstation_pro/14_0 Just get the laptop, would make your life easier
    1 point
  7. حدد وش تقصد form ولا action لو تقصد بكلامك اكشن فهو زي الايفينت حق ام تي ايه يعني يسمحلك انك توصل صفحة اخرى للي انت شغال عليه يعني مثلا زي ما تقول لما اسوي كذا روح كلم الصفحة ذي قولها انا اكلمك بعدها يتنفذ محتويات الصفحة اما بالنسبة ل form فذا يعني مدري شقولك انه تقدر مثلا يوم تسوي لوحة تسجيل تستخدمة تحط اليوزر نيم وكذا وانه له انواع المنت معينه داخلة مدري احس شرحي معقد لها الجزئية شف الرابط ذا يمكن يفيدك https://www.w3schools.com/html/html_forms.asp
    1 point
  8. معلش ما ركزت في الكود , + @#Soking ما اقول علي انو استخدم مودو , اقول انو يجيب الكودات من هناك و يقول انو الي مسويه + مود العقرب مسروق من جراند العرب ما نشرو بنفسو
    1 point
  9. local place = { {-1393.91028, 2657.92627, 671.45751}, {1.77779, 1177.08386, 633.51682}, {1205.34155, 1237.04736, 626.15211}, } local marker = createMarker ( 2.45116, 32.87801, 1200.59375 ,"arrow" , 1.5 , 255 , 100 , 60 ) addEventHandler( "onMarkerHit" , root , function ( hitElement ) if getElementType ( hitElement ) == 'player' and marker == source then local pos=math.random(#place) setElementPosition ( hitElement , unpack(place[pos])) end end )
    1 point
  10. مش عادتك تغلط بشي تافه زي كذا؟؟ aGroup = { {"Console", "الادارة"}, {"Admin", "مدير"}, {"Level 1", "مشرف"}, {"Level 2", "مشرف2"} } function getPlayersHaveRanks() local ta={} for k,v in ipairs(getElementsByType('player'))do for _,j in ipairs(aGroup)do local account=getPlayerAccount(v) if isGuestAccount(account) then break end if isObjectInACLGroup("user."..getAccountName(account), aclGetGroup(j[1])) then table.insert(ta,j) end break end end return ta end addCommandHandler("Chat", function(player,_,...) local message = table["concat"]({...}, " ") local account = getPlayerAccount(player) if not isGuestAccount(account) then for _,value in ipairs(aGroup) do if aclGetGroup(v[1]) then if isObjectInACLGroup("user."..getAccountName(account), aclGetGroup(v[1])) then for s,m in ipairs(getPlayersHaveRanks())do outputChatBox(v[2].." "..getPlayerName(player).." : #FFFFFF"..message, m, 255, 0, 0, true) end break end end end else outputChatBox("* Please Login !", player, 255, 0, 0, true) end end ) addEventHandler("onResourceStart",root, function() for _,Player in ipairs(getElementsByType("player")) do bindKey(Player, "n", "down", "chatbox", "Chat") end end )
    1 point
  11. I have tried to use VirtualBox not long ago and it did not work, but I remember using VMWare with Windows 10 and it worked like a charm. Check this out:
    1 point
  12. PC is only the way to test your scripts
    1 point
  13. Just get the laptop I'm sure she won't have anything against it when she's not using it. Either that or ask a friend. No other way, sorry.
    1 point
  14. Why its limited to use the outputdebugstring ? Or i didnt understood
    1 point
  15. function getVehicleFromPlate(text) local vehicles = getElementsByType('vehicle') for i=1,#vehicles do if string.lower(getVehiclePlateText(vehicles[i])) == string.lower(text) then return vehicles[i] end end return false end
    1 point
  16. that don´t need scripts. you can restart your server ussing /bind ( key ) refresh; ( example ): /bind . refresh and when you press "." the server going to restart.
    1 point
  17. I already am working on my own dxlib, with its own functionality and personalization. Im not reinventing dx like you said, instead id be making a different brand of bike. The idea is the same, the result is different. I always prefer something i myself make over any other.
    1 point
×
×
  • Create New...