Jump to content

طلب مساعدة : مشكلة في ارسالة كلمة في الترايجر


Recommended Posts

السلام عليكم ورحمة الله وبركاته
ابي مساعدة بسيطة وهي
انا مسوي ترايجر وكلمة في ملف سيرفر ( عدد ) وارسلت هاذي الكلمة بالترايجر لملف الكلينت
لكنها ما توصل - التجربة

-- Server --
function Miner ()

MyGold = "10"

triggerClientEvent(source, "getMinerHave", source, MyGold )

end
addEventHandler("onResourceStart", resourceRoot, Miner)

-- Client --

addEvent("getMinerHave", true)
addEventHandler ("getMinerHave", root,
function ( MyGold )
MyGold = tonumber(MyGold)
end )

addEventHandler("onClientRender", root,
    function()
	dxDrawText(MyJewels, 270, (screenH - 80), ((screenW - 100) / 2) + 100, ( (screenH - 80)) + 60, tocolor(255, 255, 255, theMinerImage), 1.00, "default-bold", "left", "center", false, false, false, false, false)

	end
)

وبس هذا كل شي ابي اعرف ليش الكلمة ما تروح لملف الكلينت

Link to comment
-- Server --
MySand        = "0"
MyIron        = "0"
MyJewels    = "0"
MyGold        = "0"

addEvent("giveMiner",true)
addEventHandler("giveMiner",root,
function ()

local MinerSand        = math.random(0,5)
local MinerJewels    = math.random(0,5)
local MinerIron        = math.random(0,5)
local MinerGold        = math.random(0,5)

MyJewels    = MyJewels+MinerJewels
MySand        = MySand+MinerSand
MyIron        = MyIron+MinerIron
MyGold        = MyGold+MinerGold

if MinerJewels == 0 and MinerSand == 0 and MinerIron == 0 and MinerGold == 0 then
exports["guimessages"]:outputServer(client,getPlayerName(client).." This is a Bad time !!!",255,0,0)
end

for _,player in ipairs ( getElementsByType ( 'player' ) ) do 
triggerClientEvent(player,"getMinerHave",player,MyGold,MyIron,MyJewels,MySand)
end

end
)

-- Client --

addEvent("getMinerHave", true)
addEventHandler ("getMinerHave", root,
function (MyGold,MyIron,MyJewels,MySand)
MyJewels = tonumber(MyJewels)
end)

addEventHandler("onClientRender", root,
    function()

	local screenW, screenH = guiGetScreenSize()
 
	dxDrawText(MyJewels, 270, (screenH - 80), ((screenW - 100) / 2) + 100, ( (screenH - 80)) + 60, tocolor(255, 255, 255, 255), 1.00, "default-bold", "left", "center", false, false, false, false, false)

	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...