Leaderboard
Popular Content
Showing content with the highest reputation on 08/09/17 in all areas
-
3 points
-
2 points
-
انت احذف اعطاء الأسلحة من الجيم مود ذا وبخصوص السقوط بالبحر شغل مود WsMap2017 هيك اسمه تقريبا ذذ2 points
-
You are going to want to use a Matrix for these kind of stuffs it really comes in handy and also OOP. Here's a simple projectile constructor i made which requires you to enable OOP: local lp = localPlayer local speed = 1 local lifetime = 1000 local id = 2686 function createProj( veh ) local self = { pos = veh.matrix:transformPosition(0, 4.3, -0.15), rot = veh.rotation, vel = veh.velocity, } self.proj = Object( id, self.pos, self.rot ) self.proj:setCollidableWith( veh, false ) Timer(function() removeEventHandler( "onClientPreRender", root, self.move ) self.proj:destroy() self = nil end,lifetime,1) function self.move( dt ) self.proj:setVelocity( ((self.proj.matrix.forward*speed)+self.vel)*dt/17 ) end addEventHandler( "onClientPreRender", root, self.move ) end addEventHandler( "onClientKey", root, function( k,p ) if k == "mouse1" and p then if not lp.vehicle then return end createProj(lp.vehicle) end end )2 points
-
Sistema de grupos -Caracteristicas: Kickear/Expulsar jugadores del grupo. Editar el color del grupo, Te puede ser útil para usarlo en otros recursos, Ya que yo lo use para un sistema de Turfs. Cambiar el rango de los jugadores, Existen tres tipos de Rangos: Fundador, Lider y Aspirante. Comprar Slots para tu Grupo! Por defecto al crear un grupo vienen incluidos 20 Slots.. Esto es modificable en el archivo server.lua Linea: 18; El costo de cada slots es de $5000, Puedes modificar este valor en la Linea 19. Invitar jugadores a tu Grupo! En el panel te muestra todos los jugadores y tambien te muestra si tiene o no grupo. Borrar tu grupo, Opción solo valida para el Fundador del grupo. Sistema de chat grupal, Con solo teclear 'Y' podrás escribir en el chat grupal. Todos las cosas se guardan en una base de datos local. Codigo libre 7w7. Sistema de administracion de grupos ( Válido solo para ACL Admin ) -Caracteristicas: Lista de todos los grupos del servidor ( Nombre del grupo y total de slots que tiene ). Editar los slots de un grupo. Editar el nombre del grupo. Editar la informacion del grupo. Expulsar a cualquier miembro del grupo. Agregar cualquier jugador al grupo. Editar el rango de cualquier jugador del grupo. Ver el nombre, cuenta y rango de un jugador. Registro de todas las acciones que se hacen ( Creaciones de grupo, Expulsaciones, Todo lo que hacen .. ). Registro de todos los chats grupales ( Puedes limpiar todo el registro por si se te acumula mucho ). Cada vez que un jugador escriba se mostrara en el debugscript. Imágenes del sistema: Funciones exportadas del sistema: --Si algún argumento de una funcion esta mal siempre retornara false. isGroupExists ( string nombre_delgrupo ) --> retorna true si es existe y false si no existe getPlayerGroup ( player thePlayer ) --> retorna el grupo del jugador isPlayerLeader ( player thePlayer ) --> retorna true si el jugador es el lider de un grupo, si no false. isPlayerFounder ( player thePlayer ) --> retorna true si el jugador es el Fundador de un grupo, si no false. isPlayerInGroup ( player thePlayer ) --> retorna true si el jugador esta en un grupo, si no false. isAccountInGroup ( string Account ) --> retorna true si la cuenta esta un grupo, si no false. removePlayerFromGroup ( player thePlayer, string GroupName ) --> expulsa al jugador de un grupo addPlayerToGroup ( player thePlayer, string GroupName ) --> Añade al jugador a un grupo. addAccountToGroup ( string Account, string GroupName ) --> Añade la cuenta a un grupo getPlayerRang ( player thePlayer ) --> Obtiene el grupo de un jugador getGroupColor ( string GroupName ) --> Obtiene el color de un grupo; Retorna colores R, G, B, ALPHA getGroupSlots ( string GroupName ) --> Obtiene los slots del grupo; Retorna numero de jugadores en el grupo, Slots del grupo. addGroupSlots ( string GroupName, number Cantidad ) --> Añade Los slots deseados a un grupo deleteGroup ( string GroupName ) --> Borra el grupo ingresado setGroupColor ( string GroupName, R, G, B, ALPHA ) --> Cambiar el color de un grupo. Comandos: F2 Para abrir el panel /cgsp Para abrir el panel de administracion de grupos ( Solo para ACL Admins; Lo puedes modificar en admin_panel_server.lua Linea: 20 ) 'Y' Para el chat grupal. Debes darle permisos de ACL Al script. Link del script: https://github.com/xNout/gpsystem Con mucho amor.. -Rex- <31 point
-
Someone knows how they've done that? when you are in arena and you press f1 so it doing an effect that resize the game and moving it to the right place... thanks1 point
-
Hi there,out of a bunch of smaller playgrounds is awoken a new project of me. I´m planned to create an mta action rpg.Whats done yet:- complete Core- custom camera- clicksystem- NPC system (no fighting yet)- player system- inventory- equipmentsystem- lightsystem- projected custom markers- skillsystem- parts of GUI- some smaller things If anyone wants to be creating some stuff for this project like graphics, story elements, ideas and so on, so he is very welcome. Also there is no name for this project yet, so you can give your ideas here! Greetz, Sam1 point
-
1 point
-
Thanks a lot for your reply @Mr.Loki I did not expect such an answer to be honest, and as a beginning scripter this seems pretty intimidating. But I am sure this will help me a lot in the long run. Thanks once again1 point
-
1 point
-
Which is why i keep mine decompiled in folders. If security means so much pain in the ass if i wanna edit it then no thanks But awesome resource for those who need it1 point
-
weeb = { {506}, {541}, {415} } Blue = {} tabb = { {6786.23828, -2033.16479, 9.54880}, {6791.76758, -2033.14282, 9.57411}, {6796.22803, -2033.16479, 9.57398}, {6799.81934, -2033.16479, 9.53969}, {6804.23145, -2033.16479, 9.53966}, {6807.46143, -2033.16479, 9.53968}, {6810.56494, -2033.16479, 9.53968}, } --6793.42090 -2032.82825 9.57630 addEvent ( "warph" , true ) addEventHandler ( "warph" , root , function ( ) setPlayerTeam ( source , RA ) local x, y, z = unpack(tabb[math.random(#tabb)]) local goku = unpack(weeb[math.random(#weeb)]) local racee = countPlayersInTeam ( RA ) if racee < 23 then setElementPosition(source, x, y, z) Blue[source] = createVehicle( goku, x, y, z, 0, 0, 0 ) warpPedIntoVehicle ( source , Blue[source] ) else setPlayerTeam ( source , nil ) end end ); جوال1 point
-
السلام عليكم ورحمة الله وبركاته اتركم مع الفيديو بدون جرجر واجد لا تنسون لايك+اشتراك اطلبو سكربتات +_+ التحميل بالفيديو تحصله بالدسكربشن +_+ نيهاهها شفت كيف انا شرير بخليك تشوف الفيديو يعني تشوفه ههههههههه الاهداءات لجميع من في القلب ولك انت ياللي تشوف1 point
-
1 point
-
1 point
-
1 point
-
Looking at the wiki page of AttachElements you can see that only certain types of elements can be attached, the list doesn't include effects so it's safe to say that it can't be attached. There's this: https://wiki.multitheftauto.com/wiki/AttachEffect useful function, try it1 point
-
Thank you Dutchamn101 for replying, long time no see https://pastebin.mtasa.com/733089556 Doesn't work yet unfortunately By the way i remember my previous problem was about not being able to connect to any server, now it's only one and maybe few other ones, which is weird @EDIT i actually managed to join that server after runing the *.bat file you provided third time. Thanks Dutchman, as they say "you're the man" To be sure i will try to join it tomorrow and post the results1 point
-
Because C# has lot's of libraries, Visual Studio has IntelliSense. It's easier and faster to write a complex mod in C#.1 point
-
كانت لك وحشة ولكن لكل بداية لها نهاية , بدايتك تنورنا ونهايتك حزنتـنا .. : ( بتوفيق لك في حياتك <31 point
-
,وعَلَيْكُم السَّلامُ ورَحْمَةُ اللهِ وَبَرَكاتُهُ Software Development Kit <= SDK ألـ . مجموعة ادوات-مكتبات-الخ , تساعدك على برمجة تطبيق لنظام-بيئة-الخ معينة SDK ما هـو الـ (ديناميكية على شبكة الإنترنت لغة البرمجة)dynamic programming language web <= PHPلـنـبـدأ, بـ ? (ديناميكية)dynamicلماذا نقول لأن يمكن أن تتفاعل مع المستخدم و قاعدة بيانات للانترنت HTML وهي اللغة الديناميكية الرئيسية المستخدمة في شبكة الإنترنت مع PHPالـ .,. لأنه يمكن أن تـفعل كل شيء "SUPER PHP" ويمكننا أن نسمى هذة اللغة : أمثلة Facebook.com @ MTASA.com @ Twitter.com @ .,.كل المنتديات @ SDK لنبدأ فى , PHPحسنأ,الآن نعرف ما هو ألـ Software Development Kit <= SDK ألـ . مجموعة ادوات-مكتبات-الخ , تساعدك على برمجة تطبيق لنظام-بيئة-الخ معينة , يعني تطوير البرمجيات كيت، انها مكتبة تسمح للمطورين لعمل التطبيقات PHP SDK لمواصلة هذا الشرح و الفهم أكثير يجب تحميل توفر الكثير من الإمكانية, يمكنك أن تفعل كل شيء معها إذا كان لديك خيال كبير PHP SDKألـ أمثلة !؟ (Login the player) تسجيل الدخول ألاعب @ عندما ينضم ألاعب إلى السيرفر ! يجب عليه تسجيل الدخول ، إذا كان لديه بالفعل تسجيل الدخول في المنتدى. نحن نسجيل الدخول لاعب معها تلقائى .,. وإذا لم يكن مسجل ، يتـم إنشاء حساب جديد في السيرفر ,وفي المنتدى (Stats of the player) إحصائيات اللاعب @ .إذا كان لاعب اللعب في السيرفر ,وإذا كان لديه حساب في السيرفر والمنتدى .يمكننا أن تظهر احصائيات لاعب في المنتدى (Facebook) فيس بوك @ !هذا هو أكثر صعوبة ولكن من الممكن .إذا تم تسجيل اللاعب في الفيسبوك ، السيرفر يرسل طلب إلى الموقع ,و ألموقع يـرسل طلب إلى الفيسبوك .إذا أكد الفيسبوك، الفيسبوك يـرسـل المعلومات إلى ألموقع ,و السيرفر سيعود هذا ."حتى إذا كان لديك لوحة تسجيل الدخول، يمكنك جعل زر "تسجيل الدخول مع الفيسبوك ألويكى https://wiki.multitheftauto.com/wiki/PHP_SDK ألـمـصـدر https://forum.multitheftauto.com/topic/32557-tut-php-sdk/ https://forum.multitheftauto.com/topic/74834-introduction-to-the-php-sdk/1 point
-
1 point
-
موفقين , فونـآسسة ~ صراحة اشكر نصور على برمجة هو ومستر طلآل صراحة مبدعين مرةة1 point
-
Thanks Rudransh, I'm glad you finally managed to join and especially that you enjoy it From the start the aim was to make Dystopia viable as a single-player experience as much as possible - enjoying it with your friends is the great added benefit but I had no illusions about the number of players I'll get. The host I got is crap and the script is kinda' heavy, so the server keeps choking. This is felt more with more players on, but I had crashes with only one player as well I'm checking it every hour or so and restart if needed, but crashes will still happen until I upgrade the host and optimize the script. About the download, well the map itself is almost 20mb but I'm actively looking to reduce the size of the other assets. My target would be ~30mb however I'm not sure it will be attainable, especially with new custom terrain planned. Stay tuned, people! Updates are on their way, I'll post here the details soon.1 point
-
True, yet this one is different. Fully automatic finding all the scripts. Copying other files to the new folder so you have 2 versions. And most of all, this one you have to install yourself. Which might be an achievement for some people.1 point
-
0 points