el8rbawy Posted January 4, 2017 Share Posted January 4, 2017 السلام عليكم اولا اريد مود عند دخول الاعب لاول مره في السيرفر ويسجل فيه ياخد فلوس انا احددها وبعض الاسلحة انا حددها - ليبدأ رحلته بالسيرفر اتمني المساعدة لاني دورت كتير Link to comment
^iiEcoo'x_) Posted January 4, 2017 Share Posted January 4, 2017 local text = "welcome" addEventHandler("onPlayerLogin", root, function() givePlayerMoney(source,1) outputChatBox(text,source) end ) 1 Link to comment
el8rbawy Posted January 4, 2017 Author Share Posted January 4, 2017 10 hours ago, #_iMr,[E]coo said: local text = "welcome" addEventHandler("onPlayerLogin", root, function() givePlayerMoney(source,1) outputChatBox(text,source) end ) ما بفهم Link to comment
^iiEcoo'x_) Posted January 4, 2017 Share Posted January 4, 2017 local text = "welcome"-- الكلام اي تبيه لما الاعب يسجل دخواه addEventHandler("onPlayerLogin", root, -- عند دخول الاعب function() -- فنكشن givePlayerMoney(source,1)-- اعطاءالاعب مال و 1هي عدد المال outputChatBox(text,source) -- مخرج بالشات end -- انهاء الفنكشن ) -- قوس اغلاق ^ server side ! 1 Link to comment
N3xT Posted January 5, 2017 Share Posted January 5, 2017 8 hours ago, #_iMr,[E]coo said: local text = "welcome"-- الكلام اي تبيه لما الاعب يسجل دخواه addEventHandler("onPlayerLogin", root, -- عند دخول الاعب function() -- فنكشن givePlayerMoney(source,1)-- اعطاءالاعب مال و 1هي عدد المال outputChatBox(text,source) -- مخرج بالشات end -- انهاء الفنكشن ) -- قوس اغلاق ^ server side ! هو قال يبيه لأول مرة فقط، كودك ذا كل مرة اللاعب يسجل ياخذها 1 Link to comment
iPrestege Posted January 5, 2017 Share Posted January 5, 2017 -- Server addEventHandler ( 'onPlayerLogin',root, function ( _,aPlayerAccount ) if getAccountData ( aPlayerAccount,'FirstLogin' ) then return end; givePlayerMoney ( source,5000 ); outputChatBox ( 'Welcome to your new world! Enjoy',source,255,255,0 ); setAccountData ( aPlayerAccount,'FirstLogin',true ); end end ); 1 Link to comment
MR.Mosa Posted January 5, 2017 Share Posted January 5, 2017 1 hour ago, iPrestege said: -- Server --- ammo = عدد الرصاص --- weaponID = رقم السلاح addEventHandler ( 'onPlayerLogin',root, --- حدث عند تسجيل الاعب function ( _,aPlayerAccount ) if getAccountData ( aPlayerAccount,'FirstLogin' ) then return end; --- اذا لا يملك حساب الاعب الداتا givePlayerMoney ( source,5000 ); --- يعطيه فلوس giveWeapon ( source, weaponID, ammo ); --- يعطيه سلاح outputChatBox ( 'Welcome to your new world! Enjoy',source,255,255,0 ); -- يرسل رسالة في الشات setAccountData ( aPlayerAccount,'FirstLogin',true ); -- ويعطيه الدتا عشان لما يسجل مرا اخرى ما يعطيه الفلوس + السلاح end end ); هاذا موقع يعطيك كل الاسلحة والرقم الخاص به https://wiki.multitheftauto.com/wiki/Weapons 1 Link to comment
el8rbawy Posted January 5, 2017 Author Share Posted January 5, 2017 On 1/5/2017 at 0:14 AM, MR.Mosa said: هاذا موقع يعطيك كل الاسلحة والرقم الخاص به https://wiki.multitheftauto.com/wiki/Weapons والله انك كفو تسلم :* ويسلمو الجميع Link to comment
MR.Mosa Posted January 6, 2017 Share Posted January 6, 2017 8 hours ago, Noyan said: والله انك كفو تسلم :* ويسلمو الجميع كفوك يا طيب 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