0 Üye ve 1 Ziyaretçi konuyu incelemekte.
Linki görebilmek için Kayıt olun yada Giriş yapın. ile yaparsın. Her durumun bir numarası var örneğe bakarsan anlarsın.
addEventHandler ( "onClientGUIClick",root,function()if source==ButonAdi thentriggerServerEvent ("KasliOl", resourceRoot)endend)
function KasliOl() local Para = getPlayerMoney(source) if Para >= 5000 then setPedStat(source, 23, 1000) takePlayerMoney(source,5000) outputChatBox("Kaslı Oldun") endendaddEvent( "KasliOl", true )addEventHandler( "KasliOl", resourceRoot, KasliOl )
ClientKod: luaaddEventHandler ( "onClientGUIClick",root,function()if source==ButonAdi thentriggerServerEvent ("KasliOl", resourceRoot)endend) ServerKod: luafunction KasliOl() local Para = getPlayerMoney(source) if Para >= 5000 then setPedStat(source, 23, 1000) takePlayerMoney(source,5000) outputChatBox("Kaslı Oldun") endendaddEvent( "KasliOl", true )addEventHandler( "KasliOl", resourceRoot, KasliOl )
addEventHandler ( "onClientGUIClick",root,function()if source==ButonAdi thentriggerServerEvent ("KasliOl", localPlayer)endend)
function KasliOl()if not (getElementModel(source) == 0) thenreturn outputChatBox("CJ Karakterine İhtiyacın Var", source, 225, 0, 0)end local Para = getPlayerMoney(source) if Para >= 5000 then outputChatBox("Kaslı Oldun", source, 190, 190, 190, true) setPedStat(source, 23, 999) else outputChatBox("Paran yetersiz", source, 190, 190, 190, true) endendaddEvent ("KasliOl", true)addEventHandler ("KasliOl", getRootElement(), KasliOl)
ClientKod: luaaddEventHandler ( "onClientGUIClick",root,function()if source==ButonAdi thentriggerServerEvent ("KasliOl", localPlayer)endend) ServerKod: luafunction KasliOl()if not (getElementModel(source) == 0) thenreturn outputChatBox("CJ Karakterine İhtiyacın Var", source, 225, 0, 0)end local Para = getPlayerMoney(source) if Para >= 5000 then outputChatBox("Kaslı Oldun", source, 190, 190, 190, true) setPedStat(source, 23, 999) else outputChatBox("Paran yetersiz", source, 190, 190, 190, true) endendaddEvent ("KasliOl", true)addEventHandler ("KasliOl", getRootElement(), KasliOl)'ButonAdi' yazan yere butonun adını yaz ve CJ karakterini giy. Eğer $5000 veya daha fazla paraya sahipsen çalışacaktır.