Mr.OppS Posted April 24, 2017 Share Posted April 24, 2017 ألـسـلام علـيـكـم, كيف الحال ؟ مشكلة في مود التدخين.مساعدة رجاءً صـورة :: للخطاء Client-- addEventHandler('onClientRender',root,function() money = 200*guiGetText(GUIEditor.edit[1]) guiSetText(GUIEditor.button[1],'($'..money..')') end) هذا هو السطر الذي بة خلل^^ اتمني احد يساعدني ويخبرني كيف اصلحة شكراً Link to comment
#Soking Posted April 24, 2017 Share Posted April 24, 2017 tonumber استخدم مع guiGetText Link to comment
Mr.OppS Posted April 24, 2017 Author Share Posted April 24, 2017 Just now, #Soking said: tonumber استخدم مع guiGetText كيف ؟؟ توضيح اكثير رجاء Link to comment
Mr.OppS Posted April 24, 2017 Author Share Posted April 24, 2017 6 minutes ago, Deativated said: وضح لي وش تبي تسوي بالظبت ؟ أريد اصلح هذا الخطاء الذي يحدث Link to comment
AHMED MOSTAFA Posted April 24, 2017 Share Posted April 24, 2017 (edited) @King SpY addEventHandler('onClientRender',root, function() guiText = guiGetText(GUIEditor.edit[1]) if tonumber (guiText) then money = 200*tonumber(guiText) end if tonumber ( money ) then guiSetText(GUIEditor.button[1], tonumber(money).." $" ) else guiSetText(GUIEditor.button[1], "only numbers !!!" ) end end ) ??? Edited April 24, 2017 by Killer Project add if tonumber ( money ) then Link to comment
Mr.OppS Posted April 24, 2017 Author Share Posted April 24, 2017 3 hours ago, Killer Project said: @King SpY addEventHandler('onClientRender',root, function() guiText = guiGetText(GUIEditor.edit[1]) if tonumber (guiText) then money = 200*tonumber(guiText) end if tonumber ( money ) then guiSetText(GUIEditor.button[1], tonumber(money).." $" ) else guiSetText(GUIEditor.button[1], "only numbers !!!" ) end end ) ??? شكـراً شكـراً, الخطاء انتهي ،ـــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــ, ولكن ظهرت مشكلة اخري الخطاء بهذا السطر if ( getPlayerMoney(source) < 200*how ) then outputChatBox('* Dont Have $200',source,255,0,0,false) return end باقي --Server addEvent('smoke',true) addEventHandler('smoke',root, function(how) if ( visible[source] == true ) then return end if ( getPlayerMoney(source) < 200*how ) then outputChatBox('* Dont Have $200',source,255,0,0,false) return end setElementData(source,'count',getElementData(source,'count') + how) takePlayerMoney(source,200*how) outputChatBox('* (SmokeSystem) : الان لديك ('..getElementData(source,'count')..')',source,0,255,0,false) end ) Link to comment
iMr.WiFi..! Posted April 24, 2017 Share Posted April 24, 2017 عطنا الكلنت الي منه ارسلت الترايقر , addEvent('smoke',true) addEventHandler('smoke',root, function(how) if ( visible[source] == true ) then return end if ( getPlayerMoney(source) < 200*tonumber(how) ) then outputChatBox('* Dont Have $200',source,255,0,0,false) return end setElementData(source,'count',getElementData(source,'count') + tonumber(how)) takePlayerMoney(source,200*tonumber(how)) outputChatBox('* (SmokeSystem) : الان لديك ('..getElementData(source,'count')..')',source,0,255,0,false) end ) Link to comment
Master_Ali Posted April 24, 2017 Share Posted April 24, 2017 3 hours ago, King SpY said: شكـراً شكـراً, الخطاء انتهي ،ـــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــ, ولكن ظهرت مشكلة اخري الخطاء بهذا السطر if ( getPlayerMoney(source) < 200*how ) then outputChatBox('* Dont Have $200',source,255,0,0,false) return end باقي --Server addEvent('smoke',true) addEventHandler('smoke',root, function(how) if ( visible[source] == true ) then return end if ( getPlayerMoney(source) < 200*how ) then outputChatBox('* Dont Have $200',source,255,0,0,false) return end setElementData(source,'count',getElementData(source,'count') + how) takePlayerMoney(source,200*how) outputChatBox('* (SmokeSystem) : الان لديك ('..getElementData(source,'count')..')',source,0,255,0,false) end ) if ( getPlayerMoney(source) < 200*tonumber(how) ) then outputChatBox('* Dont Have $200',source,255,0,0,false) return end Link to comment
' A F . Posted April 25, 2017 Share Posted April 25, 2017 On ٢٤/٤/٢٠١٧ at 08:58, Killer Project said: @King SpY addEventHandler('onClientRender',root, function() guiText = guiGetText(GUIEditor.edit[1]) if tonumber (guiText) then money = 200*tonumber(guiText) end if tonumber ( money ) then guiSetText(GUIEditor.button[1], tonumber(money).." $" ) else guiSetText(GUIEditor.button[1], "only numbers !!!" ) end end ) ??? ليه مسوي ريندر ؟ onClientGUIChanged 1 Link to comment
AHMED MOSTAFA Posted April 25, 2017 Share Posted April 25, 2017 9 hours ago, Default said: ليه مسوي ريندر ؟ onClientGUIChanged ما يخالف مادام مارح تضر ذذ + كودك بيكون افضل بدل الرندر 1 Link to comment
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now