Jump to content

FlorinSzasz

Members
  • Posts

    142
  • Joined

  • Last visited

  • Days Won

    6

FlorinSzasz last won the day on August 21

FlorinSzasz had the most liked content!

2 Followers

About FlorinSzasz

  • Birthday 01/04/2001

Details

  • Gang
    Scripters
  • Location
    Romania
  • Occupation
    College Student, Accountant
  • Interests
    To get better at scripting

Recent Profile Visitors

2,845 profile views

FlorinSzasz's Achievements

Busta

Busta (15/54)

43

Reputation

  1. Serial Anti - Cheat e o resură menită să prindă o porțiune din jucătorii care își schimbă contul sau serialul și nu prezintă suficientă experientă in ași ascunde bine urmele. Resursa beneficiază de - o baza de date unde sunt salvați toți jucătorii care se loghează cel puțin o data pe server. - resursa detecteaza daca incerci sa te loghezi de pe un alt pc la un cont creat - verifica daca sunt alte conturi cu același serial - verifica daca cumva serialul tau corespunde cu cel salvat in baza de date - verifica daca exista un fisier salvat pe pc-ul tau cu un serial daca nu exista acel fisier dar esti in baza de date nu poti sa te loghezi daca owner-ul nu te scoate din baza de date a resursei - daca acel fisier salvat pe pc-ul tau este modificat resursa observa si din nou nu poti sa te loghezi pe server fara ca owner-ul sa te scoată din baza de date. - daca serverul comunica cu clientul pentru a observa daca acel fisier exista la tine în pc ca si pe server iar serverul nu primeste un raspuns nu ai acces la contul la care doresti sa te conectezi - resursa ofera comanda /removeaccount [accountname] (utilizabila doar de un admin) -> comanda este folosita pentru a sterge un cont din baza de date a resursei in cazul in care schimbi pc-ul sau reinstalezi windows-ul si pierzi acel fisier din pc si doresti sa te conectezi la un cont existent. Link: https://community.multitheftauto.com/index.php?p=resources&s=details&id=18932
  2. Salut tuturor! Zilele astea am avut o idee pentru un topic care as spune eu ca e interesanta. Adresez aceasta intrebare tuturor celor care au deschis un server la care au lucrat sau celor care lucreaza la un server care la un moment dat ne va reprezenta in lista de servere intr-un fel sau altul. Si intrebare sta asa: "" Care este motivatia care va tine prezenti in acel proiect si va mana zi de zi, saptamana de saptamana sa il terminati si la momentul potrivit sa il urcati pe host? "" *Spre exemplu pentru mine a fost simplu sunt multe servere care au ce imi doresc dar nu au tot ce as vrea eu. Si am decis sa fac ceva de manuta mea, in general prefer sa fac lucruri cu mana mea, sa privesc inapoi si sa spun ,,i did that, then i can do something harder and harder until i need to learn the next chapter to level up ''. ** Sunt curios de experinetele voastre si de motivatia voastra.
  3. Hi guys! I want to ask why did i got/ or not banned on discord or is some sort of a discord bug because mta server is gone from the list. Yesterday i was active in the morning reading some messages later in the day i got a discord email that suspicious activity is taking place on my account so i did change my pass and when i got into my account i saw that some people got some spam messages like 2-3 and i guess some went to mta server because i was muted from the moment i did login for 24h. I did not send spam messages myself because i was not even on when they were sent. I use malwarebytes but i did not get any result of a virus or something. I guess some bot got into my account in some way or another. I wonder if am banned can i appeal that? ( i cant get into the server because it says that the server link expired)
  4. Well there are C# / C++ injectors or there are injectors for every game as we see in last few years a lot of online games that i play got cheats which were not a thing back in time so all you can do is fix or secure your scripts and make an anti-cheat for your server because to keep an anti-cheat up to date is a lot of work. But if you have your own one that does not need new updates every day/week only once at a certain time.
  5. You could use this resource is old but good and it works i used it when i was a beginner in scripting. https://www.youtube.com/watch?v=kazisZj-E98 https://forum.multitheftauto.com/topic/23029-rel-house-system-sql/ https://community.multitheftauto.com/index.php?p=resources&s=details&id=727
  6. Niște afiramții/formulări ce pot fi utile când dorim să aflăm informații legate de un anumit tabel sau coloane ce corespund unui tabel dintr-o bază de date. --- varianta MySQL local rez = dbPoll(dbQuery(connection,"SELECT table_name FROM information_schema.tables WHERE table_schema = '"..name.."';"),-1) -- inlocuiți name cu numele bazei de date de la care doriți să aflați informații legate de tabele -- rez o sa returneze un tabel cu denumirile tabelelor din baza de date pe care ați asociat-o cu variabila name for k,v in pairs(rez) do outputDebugString(v.table_name) end local rez = dbPoll(dbQuery(connection,"SELECT COLUMN_NAME,DATA_TYPE FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = '"..table.."' ORDER BY ORDINAL_POSITION"),-1) -- selectam denumirea coloanelor si tipul datelor pentru tabela aflata sub variabila table for k,v in pairs(rez) do outputDebugString(v.COLUMN_NAME) outputDebugString(v.DATA_TYPE) end ---------------------- -- Pentru SQLite local rez = dbPoll(dbQuery(connection,"SELECT name FROM sqlite_master WHERE type='table';"),-1) -- aici nu mai aveti nevoie de denumirea bazei de date deoarece se returneaza tabelele din baza de date la care sunteti conectat. for k,v in pairs(rez) do if v.name ~= "sqlite_sequence" then outputDebugString(v.name) end end local rez = dbPoll(dbQuery(connection,"PRAGMA table_info("..tostring(table)..")"),-1) -- selectam date legate de coloane -- table este denumirea tabelului de la care dorim sa aflam date legate de coloane. for k,v in pairs(rez) do outputDebugString(v.name) outputDebugString(v.type) end
  7. Update 1.2 și 1.2.1 Update-ul 1.2 este dbFrame varianta pentru MySQL iar 1.2.1 este noul update pentru dbFrame pe SQLite. Ambele cuprind funcția nouă pentru drop table, optimizări au fost aduse codului. Din acest update nu mai este nevoie de restart dupa crearea unei baze de date mai mult decat atât totul se va face acum din panel, fără a mai fi nevoie de comenziile /GUIcreatetable /GUIinsert etc.
  8. This can be an option but it may look ugly even with the right color. https://wiki.multitheftauto.com/wiki/DxDrawLine3D
  9. This should help you https://wiki.multitheftauto.com/wiki/SetColShapeSize
  10. local result = dbPoll(dq,250) -- this should --be like this local result = dbPoll(dq,-1) --Also is result[1]["password"] encrypted? when you insert it into the database? passwordVerify(pass,result[1]["password"]) --------------------------------------------------- addEvent("login", true) addEventHandler("login", root, function (user, pass) local serial = getPlayerSerial(client) local dq = dbQuery(db, "SELECT * FROM accounts WHERE serial=?", serial) local result = dbPoll(dq,-1) if (#result > 0) then if user == result[1]["username"] then if (passwordVerify(pass,result[1]["password"])) then print("Sikeres bejelentkezés!") else print("Hibás jelszó!") end else print("Felhasználónév nem található!") end else print("Sikertelen bejelentkezés!") end end)
  11. i think there is full gamemode to look at which might make the things more complicated :)) thats why we dont get any lines of code.
  12. Update 1.1 Update de securitate orice panel poate fi accesat doar de un admin în cazul în care nu folosiți un acl.xml custom altfel intervine nevoia unor modificări suplimentare.
  13. he means the interiors table structure like what columns and data type do you have and so on.
  14. Update 1.02 niște buguri legate de funcțiile updateTable/InsertIntoTable au fost fixate și niște erori client side!
  15. UPDATE 1.01 au fost rezolvate niște buguri legate de funcția SelectFromTable() https://community.multitheftauto.com/index.php?p=resources&s=details&id=18897 Mai jos este prezentat un exemplu practic de utilizare a celor 3 funcții exportate! --Example -- create the first db or second or third ... you know -- restart the resource -- create a table for one of your databases ---my id of db is 1 (your id can be 2 or 3 it depends on how many dbs you have created and which one you want to use) ---my table name is tutorial -- username is column of reference when i select and update data! addEventHandler ('onPlayerLogin',getRootElement(),function (_,theCurrentAccount) local acc_name = getAccountName(getPlayerAccount(source)) if acc_name then -- db id 1 / table tutorial / column username / and we look for username account name! rezult = exports["dbFrame"]:SelectFromTable(1,"tutorial","username",acc_name) if rezult then for k,v in ipairs(rezult) do setPedArmor(source,v.armour) setPlayerMoney(source,v.money) setElementModel(source,v.model) end else exports["dbFrame"]:InsertIntoTable(1,"tutorial",acc_name,"username",acc_name) end end end) addEventHandler("onPlayerQuit",getRootElement(),function() local acc_name = getAccountName(getPlayerAccount(source)) if acc_name then exports["dbFrame"]:updateTable(1,"tutorial","username",acc_name,"armour,money,model",getPedArmor(source),getPlayerMoney(source),getElementModel(source)) end end)
×
×
  • Create New...