Jump to content

مشكلة بتريقر !


Recommended Posts

السلام عليكم ..

سويت تريقر من السيرفر للكلنت بس ما ضبط ! مدري وش فيه صراحه

من فاعد اشتغل على سكربت حذفته و بدأت بواحد جديد ما ضبط .. بس لو عككستها من الكلنت للسيرفر يضبط !! :|

addEventHandler ('onClientResourceStart',root, 
function () 
triggerServerEvent ('aaa',localPlayer) 
end) 

addEvent ('aaa',true) 
addEventHandler ('aaa',root, 
function () 
outputChatBox ('root') 
end) 

Link to comment

شباب فهمتونا غلط ! خخخ

addEventHandler ('onResourceStart',root, 
function () 
triggerServerEvent (root,'Count',root) 
end) 

addEvent ('Count',true) 
addEventHandler ('Count',root, 
function () 
outputChatBox ('root') 
end) 

المشكلة من السيرفر للكلاينت

مو من الكلنت للسيرفر

p_192yi7f1.png

Link to comment
  
--Server  
addEventHandler("onResourceStart",resourceRoot, 
function  () 
triggerClientEvent("Count", getRootElement()) 
end 
) 
  
--Client 
ennd = function() 
outputChatBox ("root") 
end 
addEvent("Count", true) 
addEventHandler("Count", getRootElement(), ennd) 

Edited by Guest
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...