-
Posts
1,486 -
Joined
-
Last visited
Everything posted by shwaeki
-
هههههه مين راح يسدق و انتا اصلن محظور
-
يب و انا من اول شاكك هم 3 حسابات مو 2
-
ما انتو التنين واحد يعني روح العب بعيد
-
يب مشكوررر انا اخت المود و جربت اذا دخلت داتا بطلعني من التانية هاد يلي بدي اياه
-
لا ما يحتاج لانو الصوت كلنت و في امثلة في الويكي سيرفر function greetingCommandOne ( playerSource, commandName, playerName ) if playerName then local thePlayer = getPlayerFromName ( playerName ) if thePlayer then triggerClientEvent ( thePlayer, "onGreeting", getRootElement(), "Hello World!" ) else -- invalid player name specified end else -- No player name specified end end addCommandHandler ( "greet_one", greetingCommandOne ) كيلنت function greetingHandler ( message ) outputChatBox ( "The server says: " .. message ) end addEvent( "onGreeting", true ) addEventHandler( "onGreeting", getRootElement(), greetingHandler )
-
طيب الحين انا عندي نقول 20 وظيفة ابية اذا دخل واحدة ما يكون الى فيها يعني ما يكون الى في وظيفة واحدة لازم اسوي 20 من removeElementData عشين يشيلة من الوظيفة لانو يمكن يكون من اي واحدة من ال 20 وظيفة
-
ممكن حد يقلي ي ايش هاد الكود createPickup
-
اها يعني لو اسوي هيك ما يحتاج احط فلس عشين عندي زر للداتا و زر اغلاق GUIEditor = { button = {}, window = {} } addEventHandler("onClientResourceStart", resourceRoot, function() GUIEditor.window[1] = guiCreateWindow(489, 146, 324, 257, "", false) guiWindowSetSizable(GUIEditor.window[1], false) GUIEditor.button[1] = guiCreateButton(32, 48, 98, 69, "", false, GUIEditor.window[1]) GUIEditor.button[2] = guiCreateButton(203, 48, 98, 69, "", false, GUIEditor.window[1]) end ) addEventHandler('onClientGUIClick', root, function ( ) if ( source == GUIEditor.button[1] ) then setElementData ( localPlayer,'Occupation','farmer' ) elseif ( source == GUIEditor.button[2] ) then guiSetVisible (GUIEditor.window[1], false) showCursor (false) end end )
-
انا ما بدي اسوي جدول بدي من دون جدول لانو هاد بس عشين انزل علية موضوع يعني تجربة انا يلي عندي زر واحد مو محتاجة كل هاد الشي لو في طريقة اسهل و اسرع
-
يعني هيك GUIEditor = { button = {}, window = {} } addEventHandler("onClientResourceStart", resourceRoot, function() GUIEditor.window[1] = guiCreateWindow(489, 146, 324, 257, "", false) guiWindowSetSizable(GUIEditor.window[1], false) GUIEditor.button[1] = guiCreateButton(32, 48, 98, 69, "", false, GUIEditor.window[1]) GUIEditor.button[2] = guiCreateButton(203, 48, 98, 69, "", false, GUIEditor.window[1]) GUIEditor.button[3] = guiCreateButton(32, 161, 98, 69, "", false, GUIEditor.window[1]) GUIEditor.button[4] = guiCreateButton(203, 161, 98, 69, "", false, GUIEditor.window[1]) end ) addEventHandler('onClientGUIClick', root, function ( ) elseif ( source == GUIEditor.button[1] ) then setElementData(localPlayer,"Occupation",[taxi]) elseif ( source == GUIEditor.button[2] ) then setElementData(localPlayer,"Occupation",[iron]) elseif ( source == GUIEditor.button[3] ) then setElementData(localPlayer,"Occupation",[farmer]) elseif ( source == GUIEditor.button[4] ) then setElementData(localPlayer,"Occupation",[police]) end end )
-
السلام عليكم و رحمة الله و بركاتة Occupation انا ظفت اسم في تاب هو بس المشكلة لما ادخل داتا ما بيحط اسمها في هاد الحز يلي في تاب اكوادي اكلنت GUIEditor = { button = {}, window = {} } addEventHandler("onClientResourceStart", resourceRoot, function() GUIEditor.window[1] = guiCreateWindow(489, 146, 324, 257, "", false) guiWindowSetSizable(GUIEditor.window[1], false) GUIEditor.button[1] = guiCreateButton(32, 48, 98, 69, "", false, GUIEditor.window[1]) GUIEditor.button[2] = guiCreateButton(203, 48, 98, 69, "", false, GUIEditor.window[1]) GUIEditor.button[3] = guiCreateButton(32, 161, 98, 69, "", false, GUIEditor.window[1]) GUIEditor.button[4] = guiCreateButton(203, 161, 98, 69, "", false, GUIEditor.window[1]) end ) addEventHandler('onClientGUIClick', root, function ( ) if ( source == GUIEditor.button[1] ) then setElementData(localPlayer,"Occupation",taxi) end end ) addEventHandler('onClientGUIClick', root, function ( ) if ( source == GUIEditor.button[2] ) then setElementData(localPlayer,"Occupation",iron) end end ) addEventHandler('onClientGUIClick', root, function ( ) if ( source == GUIEditor.button[3] ) then setElementData(localPlayer,"Occupation",farmer) end end ) addEventHandler('onClientGUIClick', root, function ( ) if ( source == GUIEditor.button[4] ) then setElementData(localPlayer,"Occupation",police) end end ) سيرفر exports.scoreboard:addScoreboardColumn("Occupation")
-
هاي ما الها كود جاهز بس ضيفها يا لوحتك زي هيك GUIEditor = { window = {}, } addEventHandler("onClientResourceStart", resourceRoot, function() GUIEditor.window[1] = guiCreateWindow(380, 186, 486, 325, "~~shop~~", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetVisible(GUIEditor.window[1], false)--- حطها تحت الوحة و تاكد من اسم الوحة
-
MultiGameMode Server | GameMonster Server | Clan Race
shwaeki replied to ALw7sH's topic in Arabic / العربية
بتوفيق -
وظيفة اذا طلع و عاود دخل يرجعة على الداتا
-
شوف يعني هيك addEventHandler('onPlayerQuit',root, function() local vAcc = getPlayerAccount(source) if not vAcc or isGuestAccount(vAcc) then return end setAccountData(vAcc,'DATA',getElementData ( MRE,"Anything" ) == true) end ) addEventHandler('onPlayerLogin',root, function(_,acc) local v_Data = getAccountData(acc,'DATA') if ( v_Data ) then setElementData(MRE,"Anything",true) end end )
-
طيب كيف استدخدمة مع setAccountData
-
بسالكم سؤال في طريقة انو اخلية لو دخل و طلعنحفظ الداتا معة
-
يب شكرا و انا كنت زي الموبرا افكر بس كلنت