Jump to content

Recommended Posts

server side :

addEventHandler("onPlayerChat", root, 
    function(text, chat)
        if chat == 0 then
            local lvl = tonumber(getElementData(source, "xLevelx")) or 0
            if lvl and lvl ~= 0 then
                outputChatBox("["..tostring(lvl).."] "..getPlayerName(source).."#ffffff: "..text, root, 255, 255, 255, true)
            end
        end
    end
)

 

Edited by Taken'
Link to comment
addEventHandler("onPlayerChat", root, 
    function(text, chat)
        if chat == 0 then
            local lvl = getElementData(source, "xLevelx") or 0
                outputChatBox("["..tostring(lvl).."] "..getPlayerName(source).."#ffffff: "..text, root, 255, 255, 255, true)
       end
    end
)

 

Link to comment
1 minute ago, EH10 said:

addEventHandler("onPlayerChat", root, 
    function(text, chat)
        if chat == 0 then
            local lvl = getElementData(source, "xLevelx") or 0
                outputChatBox("["..tostring(lvl).."] "..getPlayerName(source).."#ffffff: "..text, root, 255, 255, 255, true)
       end
    end
)

 

نفس المشكلة

اللفل يجيني = 0

1 minute ago, Trefeor said:

اطرح ملف السيرفر لمود اللفل

طيب تعال خاص

خلاصة الكلام

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

وانا بحاول اسوي الحركه لنفسي فقط لا اكثر

 

Link to comment

addEventHandler("onPlayerChat", root, 
    function(chat)
        if chat == 0 then
            local lvl = getElementData(source, "xLevelx") or 0
                outputChatBox("["..tostring(lvl).."] "..getPlayerName(source).."#ffffff: "..lvl, root, 255, 255, 255, true)
       end
    end
)

يد بالجوال ويد العب فورت نايت..

Link to comment
2 minutes ago, EH10 said:

addEventHandler("onPlayerChat", root, 
    function(chat)
        if chat == 0 then
            local lvl = getElementData(source, "xLevelx") or 0
                outputChatBox("["..tostring(lvl).."] "..getPlayerName(source).."#ffffff: "..lvl, root, 255, 255, 255, true)
       end
    end
)

يد بالجوال ويد العب فورت نايت..

وش نوع الحشيش

Link to comment

المشكلة من الداتا ..

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

addEventHandler('onElementDataChange', root, function(data)
    if data == 'xLevelx' then
        if getElementType(source) == 'player' then
            outputChatBox('You\'re now level '..tostring(getElementData(source, data) or 1)..'!', source, 255, 255, 255, true)
        else
            outputChatBox('Error !', root, 255, 255, 255, true)
        end
    end
end);

 

Link to comment
24 minutes ago, #,+( _xiRoc[K]; > said:

المشكلة من الداتا ..

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


addEventHandler('onElementDataChange', root, function(data)
    if data == 'xLevelx' then
        if getElementType(source) == 'player' then
            outputChatBox('You\'re now level '..tostring(getElementData(source, data) or 1)..'!', source, 255, 255, 255, true)
        else
            outputChatBox('Error !', root, 255, 255, 255, true)
        end
    end
end);

 

ارسل لك ملف سيرفر حق اللفل ؟

تعال خاص لو فاضي

Link to comment
function onPlayerChatFunction ( textMessage , typeMessage )
	if ( typeMessage == 0 ) then
		if ( getElementData ( source , "xLevelx" ) ) then
			local Level = getElementData ( source , "xLevelx" ) or 0
			outputChatBox ( "["..Level.."] ".. getPlayerName ( source ) .."#ffffff: " ..textMessage , root , 255 , 255 , 255 , true )
		else 
			outputChatBox ("you have problem in level data" , root , 255 , 255 , 255 , true )
		end
	end
end
 addEventHandler ( "onPlayerChat" , root , onPlayerChatFunction )

 

Edited by Debo15
Link to comment
  • 2 weeks later...
On 7/17/2018 at 13:44, Taken' said:

سلام عليكم

معى سؤال

وش الطريقه الي اقدر اجيب فيها لفل قبل الاسم ؟ انا سيرفري حرب +

الداتا هى

xLevelx

جربت


local lvl = getElementData(source,"xLevelx") or 0

وبعدها احط في بداية الاوت بوت


"..lvl.."

ما ضبط معى

يجيب اللفل 0

وانا يكون لفلى مثلا 44

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

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