Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 21/11/16 in all areas

  1. Sorry ThatsMe did not mean to.
    2 points
  2. PROMO50SSDVPS :كود الخصم SSD VPS خصم مره واحد 50% على جميع خطط خوادم 30/11/2016 العرض ساري المفعول حتى تاريخ
    2 points
  3. oh lol how stupid I am. I should have checked things after copying. Well thanks for spotting it for me ;D -TC
    1 point
  4. Are you sure that you want to bind hminus function to every key?
    1 point
  5. im fine with these wars Anyways Progress: More FPS Improvements , deleted some not needed code and improved some things Changed lod model to 700 for now , quicker loading
    1 point
  6. اتوقع سيرفر ffs قفل حتى موقعه ما عدت اشوفه في game mta state وش رايكم شباب؟
    1 point
  7. هو قصده لو اي لاعب خارج قروب الأدمن وصار بـ تيم معين مثلا يطلعه من التيم لو هو مو ادمن هذا طلبك تفضل ^ setTimer( function( ) local AdminsTeam = getTeamFromName('Admins') if ( AdminsTeam == nil or not AdminsTeam ) then return end local Players = getPlayersInTeam( AdminsTeam ) for _, player in ipairs( Players ) do local account = getPlayerAccount( player ) if ( isGuestAccount( account ) ) then setPlayerTeam( player, nil ) outputChatBox( '* Error : #FFFFFF Sorry, you are not admin we took you out from "Admins" team ', source, 255, 0, 0, true ) else if ( not isObjectInACLGroup( 'user.' .. getAccountName( account ), aclGetGroup( 'Admin' ) ) ) then setPlayerTeam( player, nil ) outputChatBox( '* Error : #FFFFFF Sorry, you are not admin we took you out from "Admins" team ', source, 255, 0, 0, true ) else return end end end end, 50, 0 )
    1 point
  8. مافهمتكك انت تبي تعمل تيم مايخشون فيه الا رتبتة الادمن ؟
    1 point
  9. You are just annoying guy CodyL's . is working in vice city map actually i've played in that myself also he didn't forced anyone to not release vice city map -_-' in fact if anyone wants to release such a map he can but i don't think anyone will do it unless maybe for some $ or he's just done with the map it's really take a time and hard work also no i do think we need vice city map in gta san andreas and for sure that there will be some lag issue and stuff like that makes the fps drops down but as much as anyone will do is trying to fix the fps to make it the best also i'm pretty sure no one is going to release or use a map that drops fps and about the download that it's so large or big anything you call it's not we already in the speed century at least you are going to have 1 MB or even 500 KB is enough to download the map and the files of it and if you say that you have a bad connection as i've got the same problem i'm already getting 5 MB On the speed test but the server wasn't download in a speed as it should i've download from another website which the server owner - creator upload it to so it's not about release it or not it's he's own work and if he didn't want to release it that's his right also some people enjoying the showing topics such this and i'm one of them actually i'm happy to see something different in the multi theft auto all the servers now looks the same and i'm not talking about scripts ..etc i'm talking about 'BIG MAPS' 'Cities' and so on .Also i think no one need you here anymore actually this topic is getting more pages for : O nothing so i'm just saying that he did that work and some people like it maybe you don't but i guarantee that there's some people likes to play something new.
    1 point
  10. http://tapleto-host.net/ssdvps.php مع حماية من هجمات الدوس و ايضا نوفر خدمة تركيب لوحة اوبن قيم بانل مجانا SSD بتخزين VPS استضافة تابليتوا .. نوفر خوادم
    1 point
  11. شكرا لكل رد واتمنى البقيه يشاركوا
    1 point
  12. كل استايل له مسار خاص بالنسبة للصور يعني مثلا عندي استايلين : images الأول يقولك مسار الصور حقته في مجلد vb والاستايل الثاني يقولك مسار الصور بالمجلد الرئيسي واقرا كم كود لين تحصل المسار xml افتح ملف href غالباً المسار يكون بعد امر -- او بعد ماتركب الاستايل , رح لأي صورة بالمنتدى واضغط كلك يمين ثم نسخ رابط الصورة ويطلع لك المسار
    1 point
  13. Hi This is the first time I try to add a "gif" so I've found this and I'm not sure what I'm doing wrong Please somebody can help me? I want put a gif (by sprites..) in the hud but it doesn't spawn.. sw,sh are defined... it works for all modded hud. the files are 1rad.png, 2rad.png ..... 31rad.png (they are added in meta) gif = dxDrawGifImage ( sw*0.92,sh*0.15,sh*0.04,sh*0.04, "%srad.png", 0, "png", 120 ) I don't know what is wrong, I haven't put any gif before some idea? Thanks!
    1 point
  14. change the images name to : rad1.png, rad2.png ..... rad31.png and change this : gif = dxDrawGifImage ( sw*0.92,sh*0.15,sh*0.04,sh*0.04, "%srad.png", 0, "png", 120 ) To gif = dxDrawGifImage ( sw*0.92,sh*0.15,sh*0.04,sh*0.04, "rad", 1, "png", 120 )
    1 point
  15. Because dxDrawGifImage is a usefull function put this in your code: function dxDrawGifImage ( x, y, w, h, path, iStart, iType, effectSpeed ) local gifElement = createElement ( "dx-gif" ) if ( gifElement ) then setElementData ( gifElement, "gifData", { x = x, y = y, w = w, h = h, imgPath = path, startID = iStart, imgID = iStart, imgType = iType, speed = effectSpeed, tick = getTickCount ( ) } ) return gifElement else return false end end addEventHandler ( "onClientRender", root, function ( ) local currentTick = getTickCount ( ) for index, gif in ipairs ( getElementsByType ( "dx-gif" ) ) do local gifData = getElementData ( gif, "gifData" ) if ( gifData ) then if ( currentTick - gifData.tick >= gifData.speed ) then gifData.tick = currentTick gifData.imgID = ( gifData.imgID + 1 ) if ( fileExists ( gifData.imgPath .."".. gifData.imgID ..".".. gifData.imgType ) ) then gifData.imgID = gifData.imgID setElementData ( gif, "gifData", gifData ) else gifData.imgID = gifData.startID setElementData ( gif, "gifData", gifData ) end end dxDrawImage ( gifData.x, gifData.y, gifData.w, gifData.h, gifData.imgPath .."".. gifData.imgID ..".".. gifData.imgType ) end end end )
    1 point
×
×
  • Create New...