ivor Posted June 14, 2017 Share Posted June 14, 2017 (edited) سلام عليكم ابي شرح هالكود بخليه ع مقر شرطه مصممه .. يقصف التيمات التي تخش بطياره او سياره ماعدا الشرطه Client g_loc_pla = getLocalPlayer () g_loc_root = getRootElement () addEvent ( "destroyTrepassor", true ) addEventHandler ( "destroyTrepassor", g_loc_root, function () posX = 15.7054 posY = 1719.3632 posZ = 50.123 posX2 = 237.7176 posY2 = 1696.5727 posZ2 = 50.1087 posX3 = 354.6243 posY3 = 2028.3897 posZ3 = 50.1217 posX4 = 188.241 posY4 = 2081.3469 posZ4 = 50.1422 local isInResArea = getElementData ( g_loc_pla, "inRestrictedArea" ) rotZ = getPedRotation ( g_loc_pla ) if isInResArea == "true" then timer1 = setTimer ( createProjectile, 9000, 0, g_loc_pla, 20, posX, posY, posZ, 1.0, g_loc_pla, 0, 0, rotZ, 0.1, 0.1, 0.1 ) timer2 = setTimer ( createProjectile, 9000, 0, g_loc_pla, 20, posX2, posY2, posZ2, 1.0, g_loc_pla, 0, 0, rotZ, 0.1, 0.1, 0.1 ) timer3 = setTimer ( createProjectile, 9000, 0, g_loc_pla, 20, posX3, posY3, posZ3, 1.0, g_loc_pla, 0, 0, rotZ, 0.1, 0.1, 0.1 ) timer4 = setTimer ( createProjectile, 9000, 0, g_loc_pla, 20, posX4, posY4, posZ4, 1.0, g_loc_pla, 0, 0, rotZ, 0.1, 0.1, 0.1 ) end end ) addEvent ( "destroyTimers", true ) addEventHandler ( "destroyTimers", g_loc_root, function () local isInResArea = getElementData ( g_loc_pla, "inRestrictedArea" ) if isInResArea == "false" then killTimer ( timer1 ) killTimer ( timer2 ) killTimer ( timer3 ) killTimer ( timer4 ) end end ) Server g_base_col = createColCuboid ( 97.3376, 1800.0384, -32.0937, 250, 280, 120 ) createBlip ( 193.248, 1890.01, 17.234, 17 ) g_root = getRootElement () --rocketOne = createMarker ( -2931.5136, 454.4492, 17.3671, "corona", 1.5, 255, 0, 0, 150 ) --test marker --rocketTwo = createMarker ( -2931.5932, 487.1994, 17.3671, "corona", 1.5, 255, 0, 0, 150 ) --test marker function hit ( pla, dim ) if getElementType ( pla ) == "player" then local vehicle = getPedOccupiedVehicle ( pla ) if vehicle or not vehicle then if ( getTeamName(getPlayerTeam(pla)) == "Forever" ) then outputChatBox ( "Welcome, "..getPlayerName(pla).."!", pla, 0, 150, 0 ) else setElementData ( pla, "inRestrictedArea", "true" ) triggerClientEvent ( pla, "destroyTrepassor", g_root, pla ) end end end end addEventHandler ( "onColShapeHit", g_base_col, hit ) function leave ( pla, dim ) if getElementType ( pla ) == "player" then local vehicle = getPedOccupiedVehicle ( pla ) if vehicle or not vehicle then if ( getTeamName(getPlayerTeam(pla)) == "Forever" ) then outputChatBox ( "Good Bye!", pla, 0, 100, 0 ) else setElementData ( pla, "inRestrictedArea", "false" ) triggerClientEvent ( pla, "destroyTimers", g_root, pla ) outputDebugString ( "*"..getPlayerName(pla).." has left col shape" ) end end end end addEventHandler ( "onColShapeLeave", g_base_col, leave ) حاولت اسوي فيه وخربته وحذفته . حطيت احداثيات مدفع جوي وماظبط وكنت موقف فالمنطقه وغيرت التيم الي Police بالكود وماقصف برضه * ملحوظة ذا مود ومنشور ع الكومنتي Edited June 14, 2017 by #!Error.xD Link to comment
^iiEcoo'x_) Posted June 15, 2017 Share Posted June 15, 2017 راجعت لك الاكواد كاملة واللي حصلته انه لازم تعدل سطر 14 من ملف سيرفر زي ما شفت , حط التيم اللي يناسبك Link to comment
#Soking Posted June 15, 2017 Share Posted June 15, 2017 20 minutes ago, #_iMr.[E]coo said: راجعت لك الاكواد كاملة واللي حصلته انه لازم تعدل سطر 14 من ملف سيرفر زي ما شفت , حط التيم اللي يناسبك if ( getTeamName(getPlayerTeam(pla)) == "Forever" ) then وشبه ؟ Link to comment
^iiEcoo'x_) Posted June 15, 2017 Share Posted June 15, 2017 3 hours ago, #Soking said: if ( getTeamName(getPlayerTeam(pla)) == "Forever" ) then وشبه ؟ خابر انه قلت لي انا اعلى من ان ارد عليك Link to comment
#Soking Posted June 15, 2017 Share Posted June 15, 2017 5 hours ago, #_iMr.[E]coo said: خابر انه قلت لي انا اعلى من ان ارد عليك ?? مو فاهم منك اي كلمه المهم سؤالي محدد وشبه ؟ يمكن مو واخذ بالي Link to comment
^iiEcoo'x_) Posted June 15, 2017 Share Posted June 15, 2017 14 hours ago, #_iMr.[E]coo said: راجعت لك الاكواد كاملة واللي حصلته انه لازم تعدل سطر 14 من ملف سيرفر زي ما شفت , حط التيم اللي يناسبك 4 hours ago, #Soking said: ?? مو فاهم منك اي كلمه المهم سؤالي محدد وشبه ؟ يمكن مو واخذ بالي Link to comment
#Soking Posted June 15, 2017 Share Posted June 15, 2017 2 hours ago, #_iMr.[E]coo said: اللهم اني فاطر انا اسائلك وش المشكله في السطر الـ 14 ؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟ if ( getTeamName(getPlayerTeam(pla)) == "Forever" ) then دا كوده هنا جاب اسم التيم حق الاعبن و تحقق من أن أسمه فور ايفر وش لامشكله الحين Link to comment
iMr.WiFi..! Posted June 15, 2017 Share Posted June 15, 2017 21 hours ago, #!Error.xD said: يقصف التيمات التي تخش بطياره او سياره ماعدا الشرطه حاولت اسوي فيه وخربته وحذفته . حطيت احداثيات مدفع جوي وماظبط وكنت موقف فالمنطقه وغيرت التيم الي Police بالكود وماقصف برضه 34 minutes ago, #Soking said: اللهم اني فاطر انا اسائلك وش المشكله في السطر الـ 14 ؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟ if ( getTeamName(getPlayerTeam(pla)) == "Forever" ) then دا كوده هنا جاب اسم التيم حق الاعبن و تحقق من أن أسمه فور ايفر وش لامشكله الحين 1 Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now