xb0 Posted April 25, 2015 Share Posted April 25, 2015 السلام عليكم ورحمه الله وبركاته اخواني عندي سيرفر وسيرفر ثاني وابي انقل الزوار الي فيه للسيرفر الجديد ابي كود يكون كلمه باف8 مثال addCommandHandler('servergo'(ip,port) يعني اكتب باف8 servergo 14115165.15156:20000 ماعليك من الاي بي الي فوق كيس ذا ضضض المهم ياريت فهمتوني Link to comment
' A F . Posted April 25, 2015 Share Posted April 25, 2015 جرب function Pro (thePlayer) redirectPlayer(thePlayer,"IP",tonumber(port)) end addCommandHandler("servergo", Pro) Link to comment
</Mr.Tn6eL> Posted April 25, 2015 Share Posted April 25, 2015 جرب function Pro (thePlayer) redirectPlayer(thePlayer,"IP",tonumber(port)) end addCommandHandler("servergo", Pro) مو معرف port function Pro (thePlayer) redirectPlayer(thePlayer,"IP","Port") end addCommandHandler("servergo", Pro) يحتاج صلاحيات Link to comment
' A F . Posted April 25, 2015 Share Posted April 25, 2015 بس اتوقع ان البورت مو string . Link to comment
xb0 Posted April 25, 2015 Author Share Posted April 25, 2015 كل الاكواد جربتها ماتشتغل +حطيت صلاحيات Link to comment
TAPL Posted April 25, 2015 Share Posted April 25, 2015 ترا الكود موجود بمثال الويكي جاهز Link to comment
yazan Posted April 25, 2015 Share Posted April 25, 2015 ترا الكود موجود بمثال الويكي جاهز يولد لا تغلبه function rejoinMe(thePlayer, theCommand) redirectPlayer(thePlayer,"",0) end addCommandHandler("rejoin", rejoinMe) Link to comment
#Mr.Rajo~,< Posted April 25, 2015 Share Posted April 25, 2015 addEventHandler("onPlayerJoin", root, function() redirectPlayer (source,"IP",tonumber(PROT)) end ) سوي له ملف ميتا وبس كل مايدخل لاعب بحوله Link to comment
Simple. Posted April 25, 2015 Share Posted April 25, 2015 ^قال يبي امر موب حدث ! ماهي قضية يشيل آلحدث ويحط كوماند Link to comment
</Mr.Tn6eL> Posted April 25, 2015 Share Posted April 25, 2015 function Pro (thePlayer) redirectPlayer(thePlayer,"IP",Port) end addCommandHandler("servergo", Pro) نسيت Link to comment
' A F . Posted April 25, 2015 Share Posted April 25, 2015 كل الاكواد جربتها ماتشتغل+حطيت صلاحيات ورنا الميتا , Link to comment
xb0 Posted April 26, 2015 Author Share Posted April 26, 2015 مو شغال + متاكد من الميتا + انت معطيني كود اعدلخ واحط فيه الاي بي والبورت لا انا ابغى احط الاي بي والبورت في الكوماند يارب فهمتوني Link to comment
yazan Posted April 26, 2015 Share Posted April 26, 2015 خخخخخخخخخخخخخ كذا صار حق زرف زوار لو سيرفرك جديد ليه لاي بي ما يكون ثابت ! كل يوم تعمل سيرفر و بتتغلب يعني Link to comment
Simple. Posted April 27, 2015 Share Posted April 27, 2015 function joinserverHandlerFunction (playerSource, commandName, serverIP, serverPort, serverPassword) if serverIP and serverPort then --if IP and Port were specified if serverPassword then --if also a password was specified redirectPlayer (playerSource, serverIP, tonumber(serverPort), serverPassword) --redirect the player else -- else if no password was specified redirectPlayer (playerSource, serverIP, tonumber(serverPort)) --redirect the player without using the serverPassword parameter end else -- if no IP or Port have been specified outputChatBox ("Error! Correct Syntax: /joinserver IP Port [Password]", playerSource) --output an Error message to the chatbox end end addCommandHandler ("joinserver", joinserverHandlerFunction) هذآ مثال الويكي تكتب joinserver والآي بي والبورت ويحولك بس هذا يحول اللاعب الي كتب بس انت عدل عليع Link to comment
xb0 Posted April 28, 2015 Author Share Posted April 28, 2015 يعطيك العافيه بس لو غيرت playerSource الى getRootElement() تضبط ؟ Link to comment
</Mr.Tn6eL> Posted April 28, 2015 Share Posted April 28, 2015 يعطيك العافيه بس لو غيرت playerSource الى getRootElement() تضبط ؟ لا امسك جرب addCommandHandler("servergo", function(_, _, ip, port) if ip and tonumber(port) then for k,v in ipairs(getElementsByType("player")) do if not redirectPlayer(v, ip, tonumber(port)) then outputChatBox("حدث خطا بنقل الاعبين الرجاء التاكد من صحة الاي بي والبورت") end end end end) Link to comment
*[MSN]MHMD Posted April 29, 2015 Share Posted April 29, 2015 جرب اخوي الكود سيرفر اخوي تكتب الكوماند وتكتب بعدها الايبي وبعد الايبي البورت واذا في باسوورد تكتبه بعد البورت اذا م في م تكتب شي وين الباسوورد يعني بس اول خطوتين حقون الايبي والبورت CommandName = "go" ----- تقدر تعدل الي داخل القوسين هو الي تكتبه باف 8 يعني الكلمة function joinToServer (IP, Port, Password) if ( IP ) and ( Port ) then if ( Password ) then redirectPlayer (source, IP, tonumber(Port), Password) else redirectPlayer (source, IP, tonumber(Port)) end else outputChatBox( "You must to add IP and Port !!", source, 255, 0, 0, true ) end end addCommandHandler (CommandName, joinToServer) Link to comment
yazan Posted April 29, 2015 Share Posted April 29, 2015 (edited) جرب اخوي الكود سيرفراخوي تكتب الكوماند وتكتب بعدها الايبي وبعد الايبي البورت واذا في باسوورد تكتبه بعد البورت اذا م في م تكتب شي وين الباسوورد يعني بس اول خطوتين حقون الايبي والبورت CommandName = "go" ----- تقدر تعدل الي داخل القوسين هو الي تكتبه باف 8 يعني الكلمة function joinToServer (IP, Port, Password) if ( IP ) and ( Port ) then if ( Password ) then redirectPlayer (source, IP, tonumber(Port), Password) else redirectPlayer (source, IP, tonumber(Port)) end else outputChatBox( "You must to add IP and Port !!", source, 255, 0, 0, true ) end end addCommandHandler (CommandName, joinToServer) سورس مهو معرف + حتى لو معرفه رح ينقلك انت الي كاتب الكومند مو الزوار تنقل نفسك؟ رح قائمة السيرفرات اصرف لك بكودك ذا بيكون IP ذا رح يكون اللاعب Port ذا رح يكون سترنق السترنق بيكون الكومند نفسه الي هو go كل ذي الهريسه =D> و في فوق كود تنطيل نطرحح و الكود صح و كود الويكي صح يلي طرحته Edited April 29, 2015 by Guest Link to comment
</Mr.Tn6eL> Posted April 29, 2015 Share Posted April 29, 2015 اصلا كودي واضح addCommandHandler("servergo", function(_, _, ip, port) if ip and tonumber(port) then for k,v in ipairs(getElementsByType("player")) do if not redirectPlayer(v, ip, tonumber(port)) then outputChatBox("حدث خطا بنقل الاعبين الرجاء التاكد من صحة الاي بي والبورت") end end end end) وكوده خاطئ Link to comment
*[MSN]MHMD Posted April 29, 2015 Share Posted April 29, 2015 (edited) ^ يا روحي انت انا سويته له ينقل اللاعب الي يكتب الكوماند + لو يبيها تنقل الكل يمديه يسوها لوب عكل حال هالحين بعدلها له Edited April 29, 2015 by Guest Link to comment
TAPL Posted April 29, 2015 Share Posted April 29, 2015 ^ الكود مطروح بالويكي و انطرح بالموضوع بس انت اخذته و عدلته و جبت العيد Link to comment
*[MSN]MHMD Posted April 29, 2015 Share Posted April 29, 2015 (edited) عكل حال م انتبهت للاخطاء كلكم عايشين للتمسخر تم التعديل CommandName = "go" ----- تقدر تعدل الي داخل القوسين هو الي تكتبه باف 8 يعني الكلمة function joinToServer (Player, _, IP, Port, Password) if ( IP ) and ( Port ) then if ( Password ) then for k,v in ipairs(getElementsByType("player")) do redirectPlayer (v, IP, tonumber(Port), Password) else redirectPlayer (v, IP, tonumber(Port)) end end else outputChatBox( "You must to add IP and Port !!", Player, 255, 0, 0, true ) end end addCommandHandler (CommandName, joinToServer) Edited April 29, 2015 by Guest Link to comment
yazan Posted April 29, 2015 Share Posted April 29, 2015 عكل حال م انتبهت للاخطاء كلكم عايشين للتمسخر تم التعديل CommandName = "go" ----- تقدر تعدل الي داخل القوسين هو الي تكتبه باف 8 يعني الكلمة function joinToServer (Player, _, IP, Port, Password) if ( IP ) and ( Port ) then if ( Password ) then for k,v in ipairs(getElementsByType("player")) do redirectPlayer (v, IP, tonumber(Port), Password) else redirectPlayer (v, IP, tonumber(Port)) end else outputChatBox( "You must to add IP and Port !!", Player, 255, 0, 0, true ) end end end addCommandHandler (CommandName, joinToServer) جيت تكحلها عميتها This mash 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