Jump to content

طلب فنكشنات مود الانتقالات


Recommended Posts

  
  
addEventHandler("onPlayerChat",root, -- حدث عند كتابة اللاعب شيء ما 
function ( Text ,Type ) -- بارتمنز الفنكشن وهي : Text , Type 
if Type == 1 and Text:find == "بداية" then -- نبحث عن كلمة [ بداية ] اذا كانت موجوده , نتحقق اذا كتب في شات العام و 
setElementPosition(source,x,y,z) -- نحطه في الاحداثيات  
end -- end لتحقق 
end -- end للفنكشن 
) 
  

Link to comment

تفضل اختصر لك كل شيء

-- # Created By #xiProGamer 
-- # Server Side 
local Teleporting = {  
-- ["Place Name"] = {x,y,z,text} -- 
["الدائري"] = {1797.08972,842.63434,10.63281,"تـم الانتقال الى الدائري"}, 
["النخيل"] = {2033.66589,872.24658,7.07724,"تم الانتقال الى النخيل"}, 
} 
  
addEventHandler("onPlayerChat",root, 
function ( Message ) 
if ( Teleporting [ Message ] ) then  
setElementPosition ( source , Teleporting[Message][1] , Teleporting[Message][2] , Teleporting[Message][3] ) 
outputChatBox(Teleporting[Message][4],source,255,255,0,true) 
end 
end 
) 
  
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...