3ssol Posted June 16, 2013 Share Posted June 16, 2013 السلام عليكم شباب شوفو هل كود addCommandHandler("talk", function (player) outputChatBox ( "Hi Man ",player,255,0,0,true) end) الكود هذا الي يكتب talk يجيه كلام بـ الشات المهم المطلوب ابي مثلا الي يكتب talk يجيه الكلام وخلاص يطفي الكودد يعني الي يكتبها خلاص لو تكتبها مره ثانيه يكون طفي الكود فهمتوني يعني الكود يشتغل مره وحده وخلاص Link to comment
AboShanab Posted June 16, 2013 Share Posted June 16, 2013 Server Side ! addEventHandler("onResourceStart",resourceRoot, function () addEventHandler("onPlayerCommand",root,MyCmd) end) function MyCmd(cmd) if ( cmd == "talk" ) then outputChatBox("Hello",source,255,0,0,true) removeEventHandler("onPlayerCommand",root,MyCmd) end end Link to comment
3NAD Posted June 16, 2013 Share Posted June 16, 2013 لم يتم التجربة addCommandHandler ( "talk", function ( player ) outputChatBox ( "Hi Man ", player, 255, 0, 0, true ) removeCommandHandler ( "talk" ) end ) Link to comment
|Mr|-Talal07-| Posted June 16, 2013 Share Posted June 16, 2013 لم يتم التجربة addCommandHandler ( "talk", function ( player ) outputChatBox ( "Hi Man ", player, 255, 0, 0, true ) removeCommandHandler ( "talk" ) end ) ما اظن عشان لو واحد ثاني كتب بيكون راح الكومند جرب كذا addEventHandler("onResourceStart",resourceRoot, function () for _,player in ipairs(getElementsByType("player")) do setElementData(player,"Can",true) end end ) addEventHandler("onPlayerJoin",root, function () setElementData(player,"Can",true) end ) addCommandHandler("talk", function (player) local data = getElementData(player,"Can") if data and data == true then outputChatBox("Hi Man",player,255,0,0) setElementData(player,"Can",false) end end ) Link to comment
3NAD Posted June 16, 2013 Share Posted June 16, 2013 راح تمشي امورك لو كآن بـ جآنب الكلنت 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