Jump to content

x[ مساعدة ]x


Guest

Recommended Posts

السلام عليكم ورحمة الله تعالى وبركاتهه ,
الحين انلحسس مخي , سسويت كود .. لما ادخل بتجي في شات

- المشكلة ما يجي شيء في دي بق @_@ ~

الكود 

function Test ()
outputChatBox (".. Test !!",0,0,255,true,source)
		end
addEventHandler( "onPlayerJoin", getRootElement(), Test )

 

 

Link to comment

 

 ..

3 hours ago, #,xiRocKyz said:

وتأكد انه سيرفر سايد

.. ما ظهر ;( وتأكدت أنه سيرفر سايد ...

Edited by Guest
Link to comment
function Test() 
        local ping = getPlayerPing(getLocalPlayer()) 		
        if (ping > 0) then   
	outputChatBox("#123456▌ #cccccc▌ #123456Your Ping : #123456[ "..ping.." ] #123456  ━ ❧", source, 0, 0, 255, true)
end
end
addEventHandler("onPlayerJoin", getRootElement(), Test)
-- المود ع كلنت لأنه getLocalPlayer = كلنت ..

.. بس مو رآضي يزبط !!
 

Edited by Guest
Link to comment
20 minutes ago, *AnGeL said:

function Test() 
        local ping = getPlayerPing(getLocalPlayer()) 		
        if (ping > 0) then   
	outputChatBox("#123456▌ #cccccc▌ #123456Your Ping : #123456[ "..ping.." ] #123456  ━ ❧", source, 0, 0, 255, true)
end
end
addEventHandler("onPlayerJoin", getRootElement(), Test)
-- المود ع كلنت لأنه getLocalPlayer = كلنت ..

.. بس مو رآضي يزبط !!
 

اكيد مش هتشتغل لان دي كلينت

وانت مستخدم فنكشن

onPlayerJoin

استخدم 

OnClientPlayerJoin

ومش شرط تعمل تحقق من البنق :|

وازاي حاطط الرسالة في الكلينت وحاطط سورس؟؟

هو اصلا اللاعب مبيتعرفش في الرسالة لما يبقي كلينت يعني هتبقي كدة

outputChatBox("#123456▌ #cccccc▌ #123456Your Ping : #123456[ "..ping.." ] #123456  ━ ❧", 0, 0, 255, true)

 

بالتوفيق ♥️

Edited by MrKAREEM
Link to comment
15 minutes ago, MrKAREEM said:

اكيد مش هتشتغل لان دي كلينت

وانت مستخدم فنكشن

onPlayerJoin

استخدم 

OnClientPlayerJoin

ومش شرط تعمل تحقق من البنق :|

وازاي حاطط الرسالة في الكلينت وحاطط سورس؟؟

هو اصلا اللاعب مبيتعرفش في الرسالة لما يبقي كلينت يعني هتبقي كدة


outputChatBox("#123456▌ #cccccc▌ #123456Your Ping : #123456[ "..ping.." ] #123456  ━ ❧", 0, 0, 255, true)

 

بالتوفيق ♥️

نسسيت آنه كلنت يجيب لـ اللوكال ;| ريلي نيجاا <3 ..

18 minutes ago, MrKAREEM said:

اكيد مش هتشتغل لان دي كلينت

وانت مستخدم فنكشن

onPlayerJoin

استخدم 

OnClientPlayerJoin

ومش شرط تعمل تحقق من البنق :|

وازاي حاطط الرسالة في الكلينت وحاطط سورس؟؟

هو اصلا اللاعب مبيتعرفش في الرسالة لما يبقي كلينت يعني هتبقي كدة


outputChatBox("#123456▌ #cccccc▌ #123456Your Ping : #123456[ "..ping.." ] #123456  ━ ❧", 0, 0, 255, true)

 

بالتوفيق ♥️

ما زبطتت @_@

Link to comment
8 minutes ago, KillerX said:

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


addEventHandler( 'onPlayerJoin' , root ,
	function( ) 
    	local _PlayerPing = getPlayerPing( source )
   		outputChatBox( 'Your Ping : ' .. tostring( _PlayerPing ) , source , 0 , 255 , 0 , true )
    end
)  


سيرفر

زبطت .. ولو أبي أسويها مع الإسم !!

Link to comment
Just now, *AnGeL said:

زبطت .. ولو أبي أسويها مع الإسم !!

اتفضل

addEventHandler( 'onPlayerJoin' , root ,
	function( ) 
    	local _PlayerPing = getPlayerPing( source )
    	local _PlayerName = getPlayerName( source )
   		outputChatBox( 'Your Ping : ' .. tostring( _PlayerPing ) , source , 0 , 255 , 0 , true )
    	outputChatBox( 'Your Name : ' .. tostring( _PlayerName ) , source , 0 , 255 , 0 , true )
    end
)  

 

Link to comment
3 minutes ago, KillerX said:

اتفضل


addEventHandler( 'onPlayerJoin' , root ,
	function( ) 
   		outputChatBox( "Your Ping : "..getPlayerPing ( source ).." ", source , 0 , 255 , 0 , true )
    	outputChatBox( "Your Name :  "..getPlayerName ( source ).." " , source , 0 , 255 , 0 , true )
    else
    outputChatBox( "N / A  " , source , 0 , 255 , 0 , true )
    end
)  


 

 

. لو اسوي كذا بتزبط ؟ 

Edited by Guest
Link to comment
Just now, N3xT said:

if لازم تستخدم معاها الشرط else عشان تستخدم 

._. أها 

addEventHandler( 'onPlayerJoin' , root ,
	function( ) 
   		outputChatBox( "Your Ping : "..getPlayerPing ( source ).." ", source , 0 , 255 , 0 , true )
    	outputChatBox( "Your Name :  "..getPlayerName ( source ).." " , source , 0 , 255 , 0 , true )
    end
)  

 

14 minutes ago, KillerX said:

 

وش ذي ؟؟ ما في تحقق اصلا

كـذأ ؟ ..

Link to comment
15 minutes ago, *AnGeL said:

._. أها 


addEventHandler( 'onPlayerJoin' , root ,
	function( ) 
   		outputChatBox( "Your Ping : "..getPlayerPing ( source ).." ", source , 0 , 255 , 0 , true )
    	outputChatBox( "Your Name :  "..getPlayerName ( source ).." " , source , 0 , 255 , 0 , true )
    end
)  

 

كـذأ ؟ ..

الله ينورعليك :D

Edited by KillerX
Link to comment
2 hours ago, MR.TOUNSI said:

@*AnGeL

 ما هو كنت تبي اكواد كنت كلمتني خاص وعطيتك 

اما تقلد وتطلب مشكلة 

 

.. ؟ خير يـ أخي هه ") 

 @MR.TOUNSI إذا كان مودك فـ مالي صلاح فيه ، الي طلبه مني عُمر ..

وأنا كانت معي مشكلة

كلم أنجل واتس اب أنا أخوهـ ..

+213 696 43 57 80

Link to comment
function joinHandler(player)
	if getOption('welcometextonstart') then
outputChatBox('#ff0000#b3e6b3▌#a9a9a9 ▌#FFFFFF [T.M] Welcome : فخامة الهجولة والحرب [T.M] #b3e6b3 ━ ❧', player, 255, 255, 145,true)
outputChatBox("#ff0000#b3e6b3▌#a9a9a9 ▌#FFFFFF Your Name : #a9a9a9[ " .. getPlayerName(player) .. " ] #b3e6b3 ━ ❧", player, 255, 255, 145,true)
outputChatBox("#ff0000#b3e6b3▌#a9a9a9 ▌#FFFFFF Your Ping : #a9a9a9[ " .. getPlayerPing(player) .. " ] #b3e6b3 ━ ❧", player, 255, 255, 145,true)
	end
end
addEventHandler('onPlayerJoin', g_Root, joinHandler)

 

Link to comment
2 hours ago, MR.TOUNSI said:

function joinHandler(player)
	if getOption('welcometextonstart') then
outputChatBox('#ff0000#b3e6b3▌#a9a9a9 ▌#FFFFFF [T.M] Welcome : فخامة الهجولة والحرب [T.M] #b3e6b3 ━ ❧', player, 255, 255, 145,true)
outputChatBox("#ff0000#b3e6b3▌#a9a9a9 ▌#FFFFFF Your Name : #a9a9a9[ " .. getPlayerName(player) .. " ] #b3e6b3 ━ ❧", player, 255, 255, 145,true)
outputChatBox("#ff0000#b3e6b3▌#a9a9a9 ▌#FFFFFF Your Ping : #a9a9a9[ " .. getPlayerPing(player) .. " ] #b3e6b3 ━ ❧", player, 255, 255, 145,true)
	end
end
addEventHandler('onPlayerJoin', g_Root, joinHandler)

 

كودك خطئ 

g_Root مب معرف 

+

وش ذا ؟؟ 

if getOption('welcometextonstart') then

+

player = nil

المفروض يصير سورس

^

Edited by KillerX
Link to comment
Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...