Jump to content

طلب كود التوقيت


Bo7meeeD

Recommended Posts

هذا فيه وقت بس اذا الاعب طلع ودخل يبدأ له الوقت من البداية ابغى حل

يعني تحفظ الوقت اذا طلع ودخل يرجع الوقت ؟

guiSetFont(GUIEditor_Label[1], guiCreateFont("BeCooL.ttf", 17)) BeCool= / = نياهاهاها فضحتك ض1

+ superNitro

هذا انت ذذ

معروف منذو مبطي (:

لية تساعدهـ خله يدخل بـ حسابة الاصلي وش فيها ؟ / = ولا خايف يكرشونك :lol:

لو ترجع للماواضيع القديمه تشوف ان عبودي قالي انت بي كول ولا قلت له لا

وروح اقرأ القوانين وشوف وش وصع العضوية الثانية ي حلو

Link to comment

هذا فيه وقت بس اذا الاعب طلع ودخل يبدأ له الوقت من البداية ابغى حل

يعني تحفظ الوقت اذا طلع ودخل يرجع الوقت ؟

guiSetFont(GUIEditor_Label[1], guiCreateFont("BeCooL.ttf", 17)) BeCool= / = نياهاهاها فضحتك ض1

+ superNitro

هذا انت ذذ

معروف منذو مبطي (:

يب

+

سوبر نيترو مو انا :(

Link to comment
guiSetFont(GUIEditor_Label[1], guiCreateFont("BeCooL.ttf", 17)) BeCool= / = نياهاهاها فضحتك ض1

+ superNitro

هذا انت ذذ

يـآخخي وش ببلآإك أإنت ، تتهتم أإلناإس بـ بأإطل

وربي أإني مووو سوسو

..

!! يـآليت تصصدق بسس

:D

وبلاإش ، تتهم ، أإلناإس

ولو ماإ تصصدق ، قل لأإي مششرف يلاإحظ ألـ

ip

:P

Link to comment
guiSetFont(GUIEditor_Label[1], guiCreateFont("BeCooL.ttf", 17)) BeCool= / = نياهاهاها فضحتك ض1

+ superNitro

هذا انت ذذ

يـآخخي وش ببلآإك أإنت ، تتهتم أإلناإس بـ بأإطل

وربي أإني مووو سوسو

..

!! يـآليت تصصدق بسس

:D

وبلاإش ، تتهم ، أإلناإس

ولو ماإ تصصدق ، قل لأإي مششرف يلاإحظ ألـ

ip

:P

ahmedfef <~ :mrgreen:

Link to comment
guiSetFont(GUIEditor_Label[1], guiCreateFont("BeCooL.ttf", 17)) BeCool= / = نياهاهاها فضحتك ض1

+ superNitro

هذا انت ذذ

يـآخخي وش ببلآإك أإنت ، تتهتم أإلناإس بـ بأإطل

وربي أإني مووو سوسو

..

!! يـآليت تصصدق بسس

:D

وبلاإش ، تتهم ، أإلناإس

ولو ماإ تصصدق ، قل لأإي مششرف يلاإحظ ألـ

ip

:P

ahmedfef <~ :mrgreen:

خخخ احمد فيف كفو يآتآبل :mrgreen:

Link to comment
طيب شباب والحل للمشكلة ؟ :?

كيف احفظ الوقت ؟

فيه عدة طرق لحفظ الاشياء

SQL - مثل ما قال اخونا عاشق الشرق

mySQL

XML

الابسط لك

xml

بس الافضل

mysql

طيب لو سمحت اشرحح لي كيف احفظ الشي؟

وش الاشياء اللي اقدر احفظها؟

وكيف اجيب الاشياء المحفوطة وشكككرا :D

آسف تعبتكم معاي..

Link to comment

شباب انا مسوي مود يحسب كم واحد في الكول شيب

بس المشكلة انه اذا دخلت الكول شيب يحسب واحد واذا دخل واحد ثاني يحسبله واحد

بمعنى انه كل واحد يحسبله نفسه بس !

هذا الكود

سيرفر

mohamad   = createColCuboid( 1354.9476318359, -1001.4436645508, 1000, 1000, 2000, 2000 ) 
addEventHandler ( "onColShapeHit", getRootElement(), 
function (hitPlayer) 
if source == mohamad then  
triggerClientEvent ( hitPlayer, "lbl3", hitPlayer ) 
end 
   end ) 
  
addEventHandler ( "onColShapeLeave", root, 
function (thePlayer) 
if source == mohamad then  
triggerClientEvent ( thePlayer, "lbl4", thePlayer ) 
end 
   end ) 

addEvent ("lbl3", true ) 
hit = 1 
hit2 = 1 
addEventHandler ( "lbl3", root, 
function () 
guiSetVisible ( lbl1 ,true ) 
guiSetVisible ( lbl2 ,true ) 
guiLabelSetColor ( lbl1, 255, 0, 0 ) 
guiLabelSetColor ( lbl2, 0, 0, 255 ) 
if (getTeamName(getPlayerTeam(localPlayer))=="Criminal")then 
guiSetText (lbl1, " Criminal "..hit ) 
hit = ( hit - 1 ) 
end 
if (getTeamName(getPlayerTeam(localPlayer))=="Police")then 
guiSetText ( lbl2, " Police "..hit2) 
hit2 = ( hit2 - 1 ) 
end 
   end ) 
  
addEvent ("lbl4", true ) 
addEventHandler ( "lbl4", root, 
function () 
if (getTeamName(getPlayerTeam(localPlayer))=="Criminal")then 
guiSetText (lbl1, " Criminal "..hit ) 
hit = ( hit + 1 ) 
end 
if (getTeamName(getPlayerTeam(localPlayer))=="Police")then 
guiSetText ( lbl2, " Police "..hit2) 
hit2 = ( hit2 + 1 ) 
   end 
      end ) 
       
addEvent('hide',true) 
addEventHandler('hide',root, 
function() 
guiSetVisible ( lbl1 ,false ) 
guiSetVisible ( lbl2 ,false ) 
end 
) 

Link to comment
شباب انا مسوي مود يحسب كم واحد في الكول شيب

بس المشكلة انه اذا دخلت الكول شيب يحسب واحد واذا دخل واحد ثاني يحسبله واحد

بمعنى انه كل واحد يحسبله نفسه بس !

هذا الكود

سيرفر

mohamad   = createColCuboid( 1354.9476318359, -1001.4436645508, 1000, 1000, 2000, 2000 ) 
addEventHandler ( "onColShapeHit", getRootElement(), 
function (hitPlayer) 
if source == mohamad then  
triggerClientEvent ( hitPlayer, "lbl3", hitPlayer ) 
end 
   end ) 
  
addEventHandler ( "onColShapeLeave", root, 
function (thePlayer) 
if source == mohamad then  
triggerClientEvent ( thePlayer, "lbl4", thePlayer ) 
end 
   end ) 

addEvent ("lbl3", true ) 
hit = 1 
hit2 = 1 
addEventHandler ( "lbl3", root, 
function () 
guiSetVisible ( lbl1 ,true ) 
guiSetVisible ( lbl2 ,true ) 
guiLabelSetColor ( lbl1, 255, 0, 0 ) 
guiLabelSetColor ( lbl2, 0, 0, 255 ) 
if (getTeamName(getPlayerTeam(localPlayer))=="Criminal")then 
guiSetText (lbl1, " Criminal "..hit ) 
hit = ( hit - 1 ) 
end 
if (getTeamName(getPlayerTeam(localPlayer))=="Police")then 
guiSetText ( lbl2, " Police "..hit2) 
hit2 = ( hit2 - 1 ) 
end 
   end ) 
  
addEvent ("lbl4", true ) 
addEventHandler ( "lbl4", root, 
function () 
if (getTeamName(getPlayerTeam(localPlayer))=="Criminal")then 
guiSetText (lbl1, " Criminal "..hit ) 
hit = ( hit + 1 ) 
end 
if (getTeamName(getPlayerTeam(localPlayer))=="Police")then 
guiSetText ( lbl2, " Police "..hit2) 
hit2 = ( hit2 + 1 ) 
   end 
      end ) 
       
addEvent('hide',true) 
addEventHandler('hide',root, 
function() 
guiSetVisible ( lbl1 ,false ) 
guiSetVisible ( lbl2 ,false ) 
end 
) 

Link to comment

-- Server Side --

hit1 = 0 
hit2 = 0 
  
mohamad = createColCuboid(1354.9476318359, -1001.4436645508, 1000, 1000, 2000, 2000) 
  
addEventHandler("onColShapeHit", mohamad, 
function(player) 
    if getElementType(player) ~= "player" then return end 
    local Team = getPlayerTeam(player) 
    local TeamName = Team and getTeamName(Team) or "" 
    if (TeamName ~= "Criminal") and (TeamName ~= "Police") then return end 
    if (TeamName == "Criminal") then 
        hit1 = (hit1 + 1) 
    elseif (TeamName == "Police") then 
        hit2 = (hit2 + 1) 
    end 
    triggerClientEvent(root, "onHit", root, player, hit1, hit2) 
end) 
  
addEventHandler("onColShapeLeave", mohamad, 
function(player) 
    if getElementType(player) ~= "player" then return end 
    local Team = getPlayerTeam(player) 
    local TeamName = Team and getTeamName(Team) or "" 
    if (TeamName ~= "Criminal") and (TeamName ~= "Police") then return end 
    if (TeamName == "Criminal") then 
        hit1 = (hit1 - 1) 
    elseif (TeamName == "Police") then 
        hit2 = (hit2 - 1) 
    end 
    triggerClientEvent(root, "onLeave", root, player, hit1, hit2) 
end) 

-- Client Side --

addEvent("onHit", true) 
addEventHandler("onHit", root, 
function(player, hit1, hit2) 
    if player == localPlayer then 
        guiSetVisible(lbl1, true) 
        guiSetVisible(lbl2, true) 
        guiLabelSetColor(lbl1, 255, 0, 0) 
        guiLabelSetColor(lbl2, 0, 0, 255) 
    end 
    guiSetText(lbl1, "Criminal "..hit1) 
    guiSetText(lbl2, "Police "..hit2) 
end) 
  
addEvent("onLeave", true) 
addEventHandler("onLeave", root, 
function(player, hit1, hit2) 
    if player == localPlayer then 
        guiSetVisible(lbl1, false) 
        guiSetVisible(lbl2, false) 
    end 
    guiSetText(lbl1, "Criminal "..hit1) 
    guiSetText(lbl2, "Police "..hit2) 
end) 

Link to comment

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...