Jump to content

Filex

Members
  • Posts

    2,218
  • Joined

  • Last visited

Everything posted by Filex

  1. Ohh look who's birthday is today and i'm the last to know fok u @Adistar my morrocan broder stay strong and noob as always Happy 20th
  2. The company link updated: https://discord.gg/vMXvwXq
  3. Filex

    Retirement

    Good luck with ur future as @zaza always say what happens ig stays ig may we see u again
  4. @Lancee I wanted to say that you won't reapply when 3019 comes unfortuatly as the hq team of Auto Land decided to finally Blacklist you until you grow up a little bit ~Filex ~AutoLand HQ
  5. @Carter said in Discord Server - Updated Version: Luck'n Company : https://discord.gg/kFRZyh added
  6. @Ramos said in Suggestion about County Banks: Those safe numbers are too easy to crack lol Yep i can ez solo if they add such numbers
  7. ^[] ^[Los Santos Bank Robbery - 8/8 - 16/02/2019] ^[]
  8. ^[] ^[TR Bank Robbery - 8/8 - 16/02/2019] ^[]
  9. @SsCorpion said in The Company: Distinctive questions Ingame name : Username : Country of Residence : Spoken Languages : Date of birth : Date of the beginning of your SAES career : Previous organisations : Miscellaneous questions Define The Company's role in one sentence : You are getting chased by a cop and sadly you die by falling off a cliff. Because of that, the cop is menacing you with a report. How would you approach this? : You are in a confidential gang meeting. Instantaneously the leader of the meeting advocates something that you do not sympathize so you accidentally said something ridiculous. The leader of the meeting orders you to leave the gang and the meeting. After leaving the meeting and walking to your car you suddenly see 2 laser dots on your clothes, one pointing at your heart and the other at your liver. First, you act calm but then suddenly after a few milliseconds you get that signal in your brain that you have no body armor. What would you do after realizing that you are unprotected? : There is a guy where you had several disputes with causing you to have an incredible hatred against him. You also have sworn several times that you will never forgive him and every time you see him you try to avoid him as you know if you do not severe drama will happen. Now this same guy which you have a grudge on decides to join the gang of which you are a respected member of. He somehow managed to join. How would you react when you see him in the gang? : sorry but you are supposed to fill it not copy paste it :D
  10. @Bidrift said in Scripting Tutorial Part 1- Lua Basics: In the loops, shouldnt it be: a = 0 repeat print("SAES") a = a + 1 until (a = 5) Correct seems like my student is correcting me now
  11. I tried to make it as summarized as possible and for experienced people if you notice any mistakes or problems please reply so. Otherwise for beginners if you have any question post it below too the mta part coming soon...
  12. note: Lua syntax highlights dont work on code blocks indeed i used Js incase you notice difference Introduction Well as the title says this is a tutorial for those interrested to learn some of the basics of Multi Theft Auto resources & Lua language of course, as i saw that some topics discussed this subject on archives, Indeed you will be able to make a small script and why not a whole gamemode one day, So to make this accelerated i will be dividing the lesson on two parts (two different topics), one to explain what you need to know about Lua (this one) and the other about mta that will be posted as fast as possible Requirements For this part of the tutorial you wont need much, just a Lua Compiler (version 5.1-5.3.5) and a brain. You can use an online Compiler(recommandations rextester or repl) or download it from their official website here Topic Index: What is Lua, Introduction The basic syntax (The basic form of a Lua Script) Variables Data Types Strings Loops Conditions Iterators Tables 1- Lua Overview/Introduction: Lua is a a lightweight (designed to have a small amount of memory footprint which is the amount of memory (RAM) a program is supposed to use), embedded (can be used/turned into an application mean its interpreter has an API (application program interface)) and multi-paradigmes (paradigmes are a way used to define/classify a programming languages it contains more details that you can shearsh for later to understand more) programming language, found the 1993 by some Brazilian progammer, finally the meaning of the word Lua means the moon in Portuguese dont confuse with other acronyms such as LUA. 2- Basic Syntax: When it comes to Lua Syntax we shall talk in first place about 6 terms Sensitivity : upper case and low case count in Lua, indeed 'if' is not the same as 'If' or 'Name' is not the same as 'name' Identifiers: they are the words used to identify objects, variables or any defined/undefined element, identifiers are case sensitive as mentionned above and they consist of digits/underscore/letters and starting them with a number will return an error. --Working Identifiers [name, _name, number_two] --Wrong Identifiers [5name] Comments: The use of comments is frequent in the word of programming, to define its every line that get ignored while reading the code (compiling) they can be presented by -- for 1 line comment or --[[--]] for multiple lines. Tokens: Tokens are what the Lua language is consisted of, they are the keywords,symbols, identifiers and variables -- in the following example i used 3 tokens print('Hello World!') -- To show them print ( 'Hello World!' ) Whitespaces / empty lines: in Lua an empty line or a white space is just nothing and ignored when the code is started on contrast of different languages like python that Interacts with spaces. Keywords: they are tokens used for a purpose and cant be used as variables or identifiers --example : will return an error if = 'hello' ==> all the keywords : and \ break \ do \ else \ elseif \ end \ false \ for \ function \ if \ in \ local \ nil \ not \ or \ repeat \ return \ then \ true \ until \ while 3- Variables Variables are names that refer to a data storage, indeed we assign values/data to a variable that our code can interact with. Variables can be divided into 2 types in Lua Global Variables: they are the variables with a global scope means can be accessed along the whole argorithme/program and every variable in Lua is global if its not specified Local Variables : Obviously with a local scope accesable only inside a block of code or a function and local variables in Lua can be defined using the local token To declare a variable in Lua you dont need to specify the type of data just type it. [[variable_type (nothing if global)]] [[variable_name]] --- Example a = 5 local a = 5 4- Data Types Lua doesn't have types for variables but types for data, so data types are the forms of data that can be assigned to variables to make our program interact. Lua is based of 8 data types 5 basic and 3 complexe but i will introduce just 6 upon this tutorial (5 basic and 1 complexe): Nil : We can say that a nil data is the equivalent of none, it can be used to refer to a variable without any data. And its not 0 or '' Sample = nil Strings : When we want to realky define it with a scientifically term it represents an array of charactersit can take characters/numbers anything and its represented with '' or "" and more to add about later number = '2018' name = "Ronseal" Numbers : Numeric data can be a float/integer and they can be calculated as it's their main reason indeed a number is not same as a number inside a string. --- Example year = 2019 birthY = 2003 birthYS = '2003' --- Correct age = year - birthY print(age) --- returns 16 --- False age = year - birthYS --- Returns an error here as im substracting a string from a number Boolean : Its True or False their main use is for conditions (if) or to inform a success or fail of a function in Mta scripting that we will discuss at a next episode. correct = true wrong = false Function(s) : methods and a block of code that can be called/triggered to run at a specific time, it takes most of the time parameters. We can make a function like this function name (parameters) [[code]] endAnd we will discuss more about upon all the tutorial. function test(a, b) print (a + b) end test(5,8) --- returns 13 Tables/Metables Tables are only data structure in Lua, they are not variables or values but objects and it can take any values inside except nil that we discussed at the begin, to represent a table we use {} And metatables are made to help interacting with tables and using some features we cant access normally and we set them using setmetatable(table,metatable) myT = {} myMT = {} setmetatable(myT,myMT) --- Created a table and set a meta table for 5- Strings After explaining what is a string in global this phase is just to explain some of the methods and functionalities that can help you manipulating em tostring(variable/data) : one of the most known methods and it converts variables into a string which can help alot in some functions that can read/take only strings while you have numbers or other types of data --- type() method is used to return the type of a data number = 50 print(type(number)) --- returns number new = tostring(number) print(type(new)) --- returns string string.lower(variable) : this method takes a string turns all the characters in a string to lower case (miniscule). string.upper : same as the above but in an opposite way it turns all the characters inside a string to upper case (majuscule). name = 'filex' upper = string.upper(name) print(upper) --- returns FILEX lower = string.lower(upper) print(lower) --- returns FILEX string.reverse : reverse a string characters, the example can explain more. name = 'saes:rpg' new = string.reverse(name) print(new) --- returns gpr:seas new1 = string.reverse(new) print(new1) --- returns saes:rpg string.len(argument) : argument is the value to add i added it this time to show that as we spoke about functions before, the important is that method returns the number of characters in a string it can be helpful to limit the lenght of a string or in the indexing. string.sub(string, start_index, end_index_optional) : speaking about indexing this function returns a string after substracting a part of it based on a specified index. (RETURNS THE INTERVAL OF THE INDEX) string.gsub(string, pattern, replacement, limit_int) : this method is used to replace a part of the string specified (pattern) with a replacement and this replacement can be limited if their is more than 1 pattern with same form. main = 'SAES is a great server' print(string.len(main)) --- returns 22 (18 characters and 4 spaces) print(string.sub(main,1,4)) --- returns SAES print(string.gsub(main,' ', '_', 3)) --- returns SAES_is_a_great server by replacing 3 spaces with _ print(string.gsub(main,'a great server', '15 year old')) --- returns SAES is 15 year old .. (two points) : this may look useless but it can save you from a big pain in the ass when you want to attack too string it works like the operator + in other languages line python or js that im familiar with to explain more here's an example. P1 = 'SA' P2 = 'ES' print (P1..P2) --- returns SAES For me these are the most important to start with until mainting and you can find more after here strint.find() or string.format() and more. Finally the last thing to speak about in strings are escape sequences and because im lazy to explain something too easy to understand i will just pick up an already made one. To explain they are used to help us interpret or manipulate strings or add some characters that can turn it into errors like '' inside a string declared with '' aswell to use them we have '\'. 6- Loops This is an image i made to overview loops in general. There is 4 types of loops in Lua in general, what does a loop mean, sometimes we need to provide a complexe way of execution for our programs and code a loop provides this feature as it help you to repeat a code many times, mainly in Lua we have : While loop : while a condition is true it keeps repeating the code given age = 1 year = 2003 print('He lived') while (age < 19) do print (year) age = age + 1 year = year + 1 end print('until he became 18') --- returns all years until 2020 for loop : allows you to repeat a statement a number of time under this property for init,max/min value, increment do statement end init is a number you choose and will be the base of the condition the for loop make each time min/max : its min if its smaller than the main init or max if its bigger and the for loop stops when the knit and max/min are equal increment is the number the for loop adds each time to the init until it becomes equal to the min/max. To explain more heres an example for 10,20,5 do print('hello') --- will return hello 3 times as it needed 5 two times to reach 20*+ first execution end for 10,4,-2 do print('hello') --- will return hello 4 times end repeat loop: a too simple loop repeats a statement until a condition is up repeat statement until(condition) a = 0 repeat print('SAES') a = a + 1 until(a =5) --- returns SAES 5 times Nested loops : its the use of one of the 3 loops together in one block code which is too simple. Infinite loop : most of the time used to fire up your cpu but the infinite loop is the loom that keeps repeating the statement until the program is shut down while (true) do print('SAES') end 7- Conditions Conditions are an efficient way in programming to plan your code and make it work properly Indeed. a = 10 if (a>5) then print('hello') end ---returns helll In the following example we can notice the first example of conditions, in Lua to express a condition block we use the keyword if then set the condition if the condition is true (which is obvious in our example) the code will continue to work otherwise it will stop. a = 10 if (a>5) then print('hello') else print('goodbye') end That's the same previous example but with a small addition you can notice, else that keyword helps to add another statement to work incase the if condition returns false otherwise it will be just ignored. a = 10 if (a>5) then print('hello') elseif (a<5) then print('hi') end that was the same first example but i added elseif that keyword enables us to check another condition incase the first condition doesn't work 8- Iterators Gangs = {'ThC', 'AA', 'Cripz', 'Rebels' } for key, value in ipairs(Gangs) do print(key, value) end --[[returns : 1 ThC 2 AA 3 Cripz 4 Rebels --]] Each element inside a table is reffered to a key/index if its not defined its an int based on the position inside a table, indeed by noticing this example we can understand that this form of code can help us to fetch into tables and get the values and the keys of these values, we call this a generic 'For' Iterator. for k,v in pairs/ipairs(table) do statement end As i already mentionned k is the key indexed inside the table and v is the value attached to that index pair/ipair : when its indexed by just numbers randomly we use ipairs but when a value is declared to a different index ipairs wont work and we need pairs --- Example of a table we need pair for names = {father = 'harold', son = 'richard', 54} The other type of iterators is stateless/stateful iterators but they are a bit complex for now and i personally not experienced at em. 9- Tables Same for strings i will provide two useful or three useful methods to control tables table.insert(table, [pos,] value) : we can insert a value inside a table using this method and the position is an optional argument indeed if you leave it the value will be set at the end of the table Mtable = {1,2,3,4} table.insert(Mtable,5) for k, v in ipairs(Mtable) do print (v) end --[[Returns: 1 2 3 4 5--]] table.remove(table [, pos]) : removes an element from a table based on its position and if no position is specified the last element gets removed this method makes the table update from size, indexes after using it and its usage go just for numeric tables (with numbers as indexes) Mtable = {1,2,3,4} table.remove(Mtable) for k, v in ipairs(Mtable) do print (v) end --[[Returns: 1 2 3--]] For more methods to manipulate your tables you can check the official lua library here
  13. Its a remake of an old topic
  14. Mind me i'm too bored just post the name of ur nationality a credit card or passport pic anything
  15. If you are that interested in trading houses make a group for it and who knows maybe one day i get a script where u can have some propeeties under the group name and sell em with the panel
  16. @Kain said in Change day/night back to normal: brexit means brexit Yes baby
  17. @kipt said in Share your iq: I wonder how busy are you in real life, filex. And I don't mean with work / school. Don't you a toilet to clean? laundry to do? dishes? Sad for you that you cant deal with all of that and be as active as me everywhere Tho the topic was a jk no one will believe a street test for his iq
  18. @Thing thanks for this respectful contribution as we all know its a big lie concidering his english level Indeed on behalf of Auto Land HQ team i want to announce that you are denied sir @Spicey until you come up with a more serious/honest application And please everyone frame from starting dramas
×
×
  • Create New...