Jump to content

مشكلة في كود


Recommended Posts

السلام عليكم ذ الكود انا مسويه بس ما اشتغل انا كنت ناوي اسوي شات لكن ما ضبظ انا سويته مع لسته واشتغل اما مع الميمو ما اشتغل

function send() 
    local msg = guiGetText(GUIEditor_Edit[2]) 
    local chat = guiGetText(GUIEditor_Memo[1]) 
    if ( source == GUIEditor_Button[1] ) then 
        guiSetText(GUIEditor_Memo[1],"" .. chat .. "\n" .. getPlayerName(getLocalPlayer()) .. ":" .. msg) 
    end 
end 
addEventHandler("onClientGUIClick",getRootElement(),send) 
  

ان شاء الله تعرفون الحل

Link to comment

ججرب

function send() 
    local msg = guiGetText(GUIEditor_Edit[2]) 
    if ( source == GUIEditor_Button[1] ) then 
        outputChatBox("".. getPlayerName() .. " :" .. msg, root,255,0,0,true) 
    end 
end 
addEventHandler("onClientGUIClick",getRootElement(),send) 

Link to comment
ججرب
function send() 
    local msg = guiGetText(GUIEditor_Edit[2]) 
    if ( source == GUIEditor_Button[1] ) then 
        outputChatBox("".. getPlayerName() .. " :" .. msg, root,255,0,0,true) 
    end 
end 
addEventHandler("onClientGUIClick",getRootElement(),send) 

getPlayerName() ؟

وين ذا الاريجمنت :

thePlayer: The player you want to get the name of.

بلعتة ؟

Link to comment
function send() 
    local msg = guiGetText(GUIEditor_Edit[2]) 
        outputChatBox("".. getPlayerName(getLocalPlayer()) .. " :" .. msg, root,255,0,0,true) 
    end 
end 
addEventHandler("onClientGUIClick",GUIEditor_Button[1],send) 
  

ملاحضة : ذا لوكل اذا تبي تخلية للكل لازم تسوي تارقر

Link to comment

أولاً الشات

مو

client side

لازم تسوي ترايقر

مثلاً

client side

  
function talal() 
message = guiGetText( memo ) 
if source == gui-button then 
triggerServerEvent("datTALAL", getRootElement(), message) 
end 
end 

server side

addEvent ("datTALAL", true) 
addEventHandler ("datTALAL", root, 
function(message) 
local name = getPlayerName ( source ) 
outPutChatBox(name .. message) 
end) 

أنصحك تستخدم

onClientGUIAccepted

كلنت

مو شرط زر

Link to comment
أولاً الشات

مو

client side

لازم تسوي ترايقر

مثلاً

client side

  
function talal() 
message = guiGetText( memo ) 
if source == gui-button then 
triggerServerEvent("datTALAL", getRootElement(), message) 
end 
end 

server side

addEvent ("datTALAL", true) 
addEventHandler ("datTALAL", root, 
function(message) 
local name = getPlayerName ( source ) 
outPutChatBox(name .. message) 
end) 

أنصحك تستخدم

onClientGUIAccepted

كلنت

مو شرط زر

عندك خطئين

الاول outPutChatBox

ذا الفنكشن من وين جايبة ؟

الصح outputChatBox

الخطا الثاني انك ما خليتة يظهر لمن

لازم تخلية روت المنت

يعني الكود النهائي

outputChatBox ( message, getRootElement()) 

Link to comment
عندك خطئين

الاول outPutChatBox

ذا الفنكشن من وين جايبة ؟

الصح outputChatBox

الخطا الثاني انك ما خليتة يظهر لمن

لازم تخلية روت المنت

يعني الكود النهائي

outputChatBox ( message, getRootElement()) 

أسسسم اللاعب :roll:

outputChatBox ( getPlayerName(source) .. " :" ..message, getRootElement()) 

Link to comment
عندك خطئين

الاول outPutChatBox

ذا الفنكشن من وين جايبة ؟

الصح outputChatBox

الخطا الثاني انك ما خليتة يظهر لمن

لازم تخلية روت المنت

يعني الكود النهائي

outputChatBox ( message, getRootElement()) 

أسسسم اللاعب

outputChatBox ( getPlayerName(source) .. " :" ..message, getRootElement()) 

اخ

نسيت والله كنت دايخ شوي

كذا

outputChatBox ( name .. " :" ..message, getRootElement()) 

Link to comment

انتوا ما لاحظتوا شي

function send() 
    local msg = guiGetText(GUIEditor_Edit[2]) 
    local chat = guiGetText(GUIEditor_Memo[1]) 
    if ( source == GUIEditor_Button[1] ) then 
        guiSetText(GUIEditor_Memo[1],"" .. chat .. "\n" .. getPlayerName(getLocalPlayer()) .. ":" .. msg) 
    end 
end 
addEventHandler("onClientGUIClick",getRootElement(),send) 

انا مسوي شات على شكل ميمو

مثل الخاص اذا ابيه يكون تحت بعض اسوي

\n

وتشوفون انا الي يكون بيناالــ "\n"

لونه ازرق المفروض يكون احمر

وانا مسوي chat panel

اما قصة انه يطلع في الشات حسبت حسابها

بس الى الان ما اشتغل

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

http://www.qzal.net/d588248

اوك شباب

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