Jump to content

مساعده بكود


Recommended Posts

onClientGUIClick  
triggerServerEvent  
giveWeapon   
  
هاي تعطيه اسلحه ^  من زر 
  
--- 
onClientGUIClick  
takePlayerMoney 

-----------------------

addEventHandler("onClientGUIClick",root, 
function () 
if source == button then --تحقق من البوتون 
triggerServerEvent("givewep",localPlayer)--يسوي تريقر للسيرفر 
end 
end  
)  
  
  
  
  
  
Server  
addEvent('givewep',true) 
addEventHandler('givewep',root, 
function () 
giveWeapon ( source, 46, 100)--الارقمنت سويناه source عشان يعطي لفاعل الحدث 
end  
)  

اي شى مب فاهمه فوق قول

ان شاء الله افدتك .#

وبتوفيق .

Link to comment
[b]  
---#Server 
addEvent('givewep',true) 
addEventHandler('givewep',root, 
function () 
  
local plr = getPlayerMoney(source) 
  
  
if plr >=1500 then  
  
giveWeapon ( source, 46, 100) 
  
takePlayerMoney(1500) 
  
  
else  
  
  
outputChatBox("< 1500",source,0,255,0) 
  
  
  
end 
  
)[/b] 

Link to comment
  
---#Server 
addEvent('givewep',true) 
addEventHandler('givewep',root, 
function () 
  
local plr = getPlayerMoney(source) 
  
  
if plr >=1500 then  
  
giveWeapon ( source, 46, 100) 
  
takePlayerMoney(source, 1500) 
  
  
else  
  
  
outputChatBox("< 1500",source,0,255,0) 
  
  
  
end 
  
) 

@Ahmed Ly

سحب الفلوس ناقص ارقمنت

Link to comment
  
---#Server 
addEvent('givewep',true) 
addEventHandler('givewep',root, 
function () 
  
local plr = getPlayerMoney(source) 
  
  
if plr >=1500 then  
  
giveWeapon ( source, 46, 100) 
  
takePlayerMoney(source, 1500) 
  
  
else  
  
  
outputChatBox("< 1500",source,0,255,0) 
  
  
  
end 
  
) 

@Ahmed Ly

سحب الفلوس ناقص ارقمنت

^ end ناقص

Link to comment
  
---#Server 
addEvent('givewep',true) 
addEventHandler('givewep',root, 
function () 
  
local plr = getPlayerMoney(source) 
  
  
if plr >=1500 then  
  
giveWeapon ( source, 46, 100) 
  
takePlayerMoney(source, 1500) 
  
  
else  
  
  
outputChatBox("< 1500",source,0,255,0) 
  
  
  
end 
  
) 

@Ahmed Ly

سحب الفلوس ناقص ارقمنت

^ end ناقص

احمد لي الي مسوي الكود موب انا

Link to comment
[b]  
---#Server 
addEvent('givewep',true) 
addEventHandler('givewep',root, 
function () 
  
local plr = getPlayerMoney(source) 
  
  
if plr >=1500 then  
  
giveWeapon ( source, 46, 100) 
  
takePlayerMoney(1500) 
  
  
else  
  
  
outputChatBox("< 1500",source,0,255,0) 
  
  
  
end 
  
)[/b] 

بسالك ليه بين كل كود وكود مترين ؟ ترتيب يعني ؟ :mrgreen:

Link to comment
[b]  
---#Server 
addEvent('givewep',true) 
addEventHandler('givewep',root, 
function () 
  
local plr = getPlayerMoney(source) 
  
  
if plr >=1500 then  
  
giveWeapon ( source, 46, 100) 
  
takePlayerMoney(1500) 
  
  
else  
  
  
outputChatBox("< 1500",source,0,255,0) 
  
  
  
end 
  
)[/b] 

بسالك ليه بين كل كود وكود مترين ؟ ترتيب يعني ؟ :mrgreen:

ﻻ ماله دخل بالترتيب :lol:

ترتيب الاكواد يتم عن طريق ال تاب (اربع مسافات قدام الكود)ء

Link to comment

نفس طلبك , مسويه في شوب عندي من زماان

تفضل

Client

Button = guiCreateButton ( ... ) 
  
addEventHandler ( "onClientGUIClick", resourceRoot, 
function (    ) 
    if ( source == Button ) then 
        triggerServerEvent ( "Weapon", localPlayer ) 
    end 
end ) 

Server

addEvent ( "Weapon", true ) 
addEventHandler ( "Weapon", root, 
function (    ) 
    if ( getPlayerMoney ( source ) >= 1500 ) then 
        giveWeapon ( source, 38, 2000 ) -- هنا بدل 38 بأيدي السلاح الي تبيه , وبدل 2000 بعدد الرصاص الي تبيه 
        takePlayerMoney ( source, 1500 ) 
        outputChatBox ( "* تم شراء السلاح", source, 255, 255, 255, true ) 
    else 
        outputChatBox ( "* لم تتم عملية الشراء لعدم توفر المال الكافي", source, 255, 255, 255, true ) 
    end 
end ) 
Edited by Guest
Link to comment
[b]  
---#Server 
addEvent('givewep',true) 
addEventHandler('givewep',root, 
function () 
  
local plr = getPlayerMoney(source) 
  
  
if plr >=1500 then  
  
giveWeapon ( source, 46, 100) 
  
takePlayerMoney(1500) 
  
  
else  
  
  
outputChatBox("< 1500",source,0,255,0) 
  
  
  
end 
  
)[/b] 

بسالك ليه بين كل كود وكود مترين ؟ ترتيب يعني ؟ :mrgreen:

ﻻ ماله دخل بالترتيب :lol:

ترتيب الاكواد يتم عن طريق ال تاب (اربع مسافات قدام الكود)ء

انا داري لكن ابي افهم ليه الحوسه هذي :lol:

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