Jump to content

تاج علي حسب التيم


Recommended Posts

لم تتم التجربة :roll:

addEventHandler("onPlayerChat", root, chatbox) 
function chatbox( text, type) 
local PlayerTeam = getPlayerTeam ( source )  
    if PlayerTeam then 
 cancelEvent() 
        outputChatBox("TeamTag" .. getPlayerName ( source ) .. text, root, 0, 255, 0, true ) 
        outputServerLog("CHAT: TeamTag" .. getPlayerName ( source ) ..  text) 

الإستبدال :

TeamTag = التاق إلي تبيه

Edited by Guest
Link to comment
لم تتم التجربة :roll:
addEventHandler("onPlayerChat", root, chatbox) 
function chatbox( text, type) 
local PlayerTeam = getPlayerTeam ( source ) 
    if PlayerTeam then 
 cancelEvent() 
        outputChatBox("TeamTag" .. getPlayerName ( source ) .. text, root, 0, 255, 0, true ) 
        outputServerLog("CHAT: TeamTag" .. getPlayerName ( source ) ..  text) 

الإستبدال :

TeamTag = التاق إلي تبيه

addEventHandler('onPlayerChat',root, 
 function ( text,type ) 
    local PlayerTeam = getPlayerTeam ( source ) 
      if ( PlayerTeam and type == 0 ) then 
          local r,g,b = getTeamColor ( PlayerTeam ) 
        cancelEvent (   ) 
             outputChatBox( '* [ '..getTeamName ( PlayerTeam )..' ] '..getPlayerName ( source )..' : '..text,root,r,g,b ) 
        end 
    end 
) 

Edited by Guest
Link to comment
لم تتم التجربة :roll:
addEventHandler("onPlayerChat", root, chatbox) 
function chatbox( text, type) 
local PlayerTeam = getPlayerTeam ( source ) 
    if PlayerTeam then 
 cancelEvent() 
        outputChatBox("TeamTag" .. getPlayerName ( source ) .. text, root, 0, 255, 0, true ) 
        outputServerLog("CHAT: TeamTag" .. getPlayerName ( source ) ..  text) 

الإستبدال :

TeamTag = التاق إلي تبيه

addEventHandler('onPlayerChat',root, 
 function ( text,type ) 
    local PlayerTeam = getPlayerTeam ( source ) 
    local r,g,b = getTeamColor ( PlayerTeam ) 
      if ( PlayerTeam and type == 0 ) then 
        cancelEvent (   ) 
             outputChatBox( '* [ '..getTeamName ( PlayerTeam )..' ] '..getPlayerName ( source )..' : '..text,root,r,g,b ) 
        end 
    end 
) 

outputServerLog Server Side !!! هههههه مانتبهت له

Link to comment
ماضبط ؟ :/ كيف

debugscript 3

ومتأكد انك بتيم ؟

^ بيطلع خطأ بالديبوق اذا حذفت اللاعب من التيم,

واتوقع الخطأ بيكون من اللون حق التيم r,g,b

+ البرنس خل الكود كذآ احسن ,

addEventHandler("onPlayerChat", root, 
function (text,type) 
Team = getPlayerTeam(source) 
    if ( Team and type == 0) then 
    cancelEvent() 
outputChatBox("* |Text| : #=> "..getPlayerName(source).."" .. text, root, 255, 255, 255, true) 
        end 
    end 
) 
Link to comment
ماضبط ؟ :/ كيف

debugscript 3

ومتأكد انك بتيم ؟

^ بيطلع خطأ بالديبوق اذا حذفت اللاعب من التيم,

واتوقع الخطأ بيكون من اللون حق التيم r,g,b

+ البرنس خل الكود كذآ احسن ,

addEventHandler("onPlayerChat", root, 
function (text,type) 
Team = getPlayerTeam(source) 
    if ( Team and type == 0) then 
    cancelEvent() 
outputChatBox("* |Text| : #=> "..getPlayerName(source).."" .. text, root, 255, 255, 255, true) 
        end 
    end 
) 

عارف عدلتة .. من قبل تقول المفروض بعد ما اتحقق اجيبة ذذ

Link to comment

للفائده , اذا تبيه لتيم محدد ,

addEventHandler("onPlayerChat", root, 
function (text,type) 
local Team = getPlayerTeam(source) 
if ( Team ) then 
if Team == getTeamFromName("TeamName") then 
    if ( Team and type == 0) then 
    cancelEvent() 
outputChatBox("* |Text| : #=> "..getPlayerName(source).."" .. text, root, 255, 255, 255, true) 
                end 
            end 
        end 
    end 
) 

بدل سطر 5 ,

TeamName = اسم التيم,

Link to comment
ماضبط ؟ :/ كيف

debugscript 3

ومتأكد انك بتيم ؟

^ بيطلع خطأ بالديبوق اذا حذفت اللاعب من التيم,

واتوقع الخطأ بيكون من اللون حق التيم r,g,b

+ البرنس خل الكود كذآ احسن ,

addEventHandler("onPlayerChat", root, 
function (text,type) 
Team = getPlayerTeam(source) 
    if ( Team and type == 0) then 
    cancelEvent() 
outputChatBox("* |Text| : #=> "..getPlayerName(source).."" .. text, root, 255, 255, 255, true) 
        end 
    end 
) 

هو يبي اسم التيم يجي بالشات -_-" ؟ وش إستفاد كذا ؟

-- Server Side # 
addEventHandler ( "onPlayerChat", root, 
    function ( msg ) 
        if ( getPlayerTeam ( source ) ) then 
            cancelEvent ( ) 
            local r, g, b = getTeamColor ( getPlayerTeam ( source ) ) 
            outputChatBox ( "[ " .. getTeamName ( getPlayerTeam ( source ) ) .. " ] " .. getPlayerName ( source ) .. ": #FFFFFF" .. msg, root, r, g, b, true ) 
        end 
    end 
) 

Link to comment
لم تتم التجربة :roll:
addEventHandler("onPlayerChat", root, chatbox) 
function chatbox( text, type) 
local PlayerTeam = getPlayerTeam ( source ) 
    if PlayerTeam then 
 cancelEvent() 
        outputChatBox("TeamTag" .. getPlayerName ( source ) .. text, root, 0, 255, 0, true ) 
        outputServerLog("CHAT: TeamTag" .. getPlayerName ( source ) ..  text) 

الإستبدال :

TeamTag = التاق إلي تبيه

addEventHandler('onPlayerChat',root, 
 function ( text,type ) 
    local PlayerTeam = getPlayerTeam ( source ) 
    local r,g,b = getTeamColor ( PlayerTeam ) 
      if ( PlayerTeam and type == 0 ) then 
        cancelEvent (   ) 
             outputChatBox( '* [ '..getTeamName ( PlayerTeam )..' ] '..getPlayerName ( source )..' : '..text,root,r,g,b ) 
        end 
    end 
) 

outputServerLog Server Side !!! هههههه مانتبهت له

وليه يعني كودك مهو سيرفر؟ :mrgreen:

Link to comment

نصيحة ي برنس

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

لات المنتدى ذا يعطيك الاكواد وانت تسويها ، مو يعطيك اكواد جاهزه )الا اذا كانت مطروحه بموضوع اخر(

انا اقولكم ما اعرف ابرمج لغة lua , وطلباتي قليلة بالمنتدى

واسف على الشطحه بالموضوع مدري ليه احس الرد ماله داعي ض1

Link to comment
نصيحة ي برنس

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

لات المنتدى ذا يعطيك الاكواد وانت تسويها ، مو يعطيك اكواد جاهزه )الا اذا كانت مطروحه بموضوع اخر(

انا اقولكم ما اعرف ابرمج لغة lua , وطلباتي قليلة بالمنتدى

واسف على الشطحه بالموضوع مدري ليه احس الرد ماله داعي ض1

اكيد انت تتمني لي الشر مو تحب اكون مبرمج او اتعلم صح

مالك دخل بي لا ترد علي الموضيع حقي اوكي

خلاص ما تبي احد يساعدك ورني كيف تسوي مودات

والله كله جاهز انت اكثر واحد يسوي مواضيع

و اكثرها مكرره

روح تعلم شي

والله كذا ما تسمي نفسك مبرمج و احنا نبيك تسير مبرمج بس مو كذاا

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