Jump to content

Luke_Ferrara

Members
  • Posts

    88
  • Joined

  • Last visited

Everything posted by Luke_Ferrara

  1. Well the amount of money I was putting up I was sure someone would jump at the opportunity but I haven't received so much as a private message from someone even attempting...I believe this project is a lost cause, close the thread I'll look elsewhere for lua script writers. Thanks anyway fellas.
  2. How would I go about doing that? Is there a wiki page or could someone explain it to me? Thank you in advance
  3. SetElementData? Would that get logged in the database or use the account database that comes with mta
  4. yeah......maybe you shouldn't post in threads you have no clue what your talking about. Try re-reading my other post again and try again. Class and ACL are different therefore how would a script that bases it's scripts on an ACL work on a script that runs on created custom classes?
  5. no, he created his own admin panel which is very limited to toady's admin panel for example cannon's has no admin chat, or ability to start and stop resources or give admin rights.....see? limited. So is it possible to combine it with the acl so toady's panel will work?
  6. well I am using cannons user system....and in the resource he uses classes like class 2 = member class 4 = admin however it is all MySQL so what can I do do when I make an account class 4 it also goes into the acl so I can use lil toady admin panel?
  7. so how would I combine the two? example? function adminRights() local thePlayer = getPlayerName(playerSource) if (TAGS[player] == "4") then aclGroupAddObject (aclGetGroup("Admin"), "user."..thePlayer) end end
  8. yeah but those resource lack....and 50, reguardless you do agree that the release of that script dramatically increased samp's population? and if someone is willing to create all these things in a single resource in the same db like mysql (would be preferred) or even the built in sqlite in mta so it is easy to use for newer players....if the script writer doesn't want the money as soon as it is released into the community for everyone to download I will donate the 2k to the team. and by item system I mean like an inventory screen and a mini map editor that allows players to pick ojects up and have them stored in his inventory, drop them where ever he wants, ect. and app system such as basic computer phones be connected and all that like gadgets in game.
  9. yes I am sure and this is final, I don't know if any of you have taken up the offer but I have increased the payment to $2,000. If I get a great quality script I AM going to release it into the community for numerous reasons mostly to increase MTA's population but to allow newer players such as myself to be able to look at the scripts and be able to break them down and reinvent them thus making the community stronger. I mean the reason samp is so popular is because the godfather script leaked and people took that and recreated it and played other servers got more people into it ect. So if anyone is serious either message me or leave a reply. I will make payments via paypal or money order which ever the script writer prefers. So don't look at it as helping some guy, look at it as improving the community. Cheers
  10. Hello again everyone I have another quick question. I have created a login system with a MySQL database (with the MySQL Plugin) and I was wondering how I could involve my ACL in it so I could still use the admin system....thanks guys
  11. you have a point I may just donate it to the dev. team simply because they did such a great job and I do mean mysql database not sql or sqlight I mean mysql. And no prepayments...you can host a server and I can try it out then pay.
  12. first of all if I got reimbursed I think I'm older than you are expecting and look I didn't ask for opinions if you got the script or something similar you will make some money
  13. because I want the basic idea and I will edit it to make it better
  14. Okay so I got reimbursed for my taxes today and got $1500 back. All my bills are paid and all I have been doing lately is MTA. So I figured since I have no other hobbies why not invest in this. So I am looking to hire up to three highly qualified scripters or possibly a team or even one scripter who thinks he/she is up to the task who will receive the full bounty. I want a valhalla like script it must have these thing included in the script: EVERYTHING MUST BE SAVED IN MYSQL!! NOT SQL! - log in menu and character menu(have up to 4 characters to one account plus full features) - housing system - car ownership - car system ( all of the basic vehicle functions such as blinkers, toggle head lights, locks, ect. as well as an analog speedometer and fuel speedometer) - factions (police, firefighter, gangs, mafia, ect. plus up to 30 misc factions) - court system - job system (taxi driver, bus driver, delivery, drug farmer, and anything else you can think of) - language system - item system - app system - drug/weapon peds for certain gangs/mafias - bank system - payday with taxes (realistic economy) - key system (for safes, cars and houses) Must be in Las Venturas I think this is a reasonable price if you are at all interested either pm me or reply to the post in good time I will most likely increase the bounty if I am impressed by the finish scripts sent to me I will purchase the scripts after I have tested them and evaluate them If you have a copy of the valhalla script I will purchase it off of you for $1500 THANK YOU EVERYONE IN THE MTA COMMUNITY!!
  15. yes I am not sure about the SELECT part like heres my registration function addPlayer(thePlayer, username, email, password) playerIP = getPlayerIP( thePlayer ) playerSerial = getPlayerSerial( thePlayer ) if ( username ) then addNewUser = mysql_query(connect_mysql, "INSERT INTO `players` (login, class, serial, email, password) VALUES ('"..username.."', '2', '"..playerSerial.."','"..email.."', '"..password.."')") if( addNewUser) then outputChatBox( "#FF0000*USER: #FFFF00Succesfully added: #FF0000"..username.." #FFFF00to the usersystem.", player, 0, 0, 0, true ) --- restartResource(getResourceFromName("usersystem")) triggerClientEvent ( "hideLoginWindow", getRootElement()) triggerClientEvent ( "ShowChar", getRootElement()) setPlayerName(thePlayer, username) else outputDebugString("mysql_query failed" ) end mysql_free_result( addNewUser ) else outputChatBox ("#FF0000*USER: #FFFF00User: #FF0000"..username.." #FFFF00 could not be found.", player, 0,0,0, true) end end addEvent ("addPlayer", true) addEventHandler("addPlayer", getRootElement(), addPlayer) now how can I use the SELECT command and apply this data for users to login
  16. still nothing I placed parenthesis in the according spots but it still doesn't act how I want it to
  17. well the point is to create a guiEdit that requires the input to resemble Firstname Lastname format and when it does not the text on the guiWindow goes red and the next button becomes unclickable until the user fixes his/her mistake which then will turn the text green and the next button will then become clickable
  18. The validName(theText) doesn't return as true.... function validName(theText) local foundSpace, valid = false, true local spaceBefore = false local current = '' for i = 1, #theText do local char = theText:sub( i, i ) if char == ' ' then -- it's a space if i == #theText or i == 1 or spaceBefore then -- space at the end or beginning or two spaces are not allowed valid = false break end current = '' spaceBefore = true elseif ( char >= 'a' and char <= 'z' ) or ( char >= 'A' and char <= 'Z' ) then -- can have letters anywhere in the name current = current .. char spaceBefore = false else -- unrecognized char (special chars) valid = false break end end if valid and #theText < 'Z' then return true else return false end end function checkNameBox() if (source==NameBox) then local theText = guiGetText(source) if validName(theText) then GUIEditor_Label[1] = guiCreateLabel(80,157,204,21,"- Must Be Firstname Lastname format",false,creationWin) guiLabelSetColor(GUIEditor_Label[1], 0, 255, 0) GUIEditor_Label[2] = guiCreateLabel(80,173,204,21,"- Can not exceed 20 characters",false,creationWin) guiLabelSetColor(GUIEditor_Label[2], 0, 255, 0) GUIEditor_Label[3] = guiCreateLabel(82,206,204,21,"- Must be realistic",false,creationWin) guiLabelSetColor(GUIEditor_Label[3], 0, 255, 0) GUIEditor_Label[4] = guiCreateLabel(81,190,204,21,"- Can not be a celebrity's name",false,creationWin) guiLabelSetColor(GUIEditor_Label[4], 0, 255, 0) GUIEditor_Label[5] = guiCreateLabel(82,222,275,21,"- Can not have the same last name unless related",false,creationWin) guiLabelSetColor(GUIEditor_Label[5], 0, 255, 0) GUIEditor_Label[6] = guiCreateLabel(82,239,275,21,"- May only contain letters",false,creationWin) guiLabelSetColor(GUIEditor_Label[6], 0, 255, 0) else GUIEditor_Label[1] = guiCreateLabel(80,157,204,21,"- Must Be Firstname Lastname format",false,creationWin) guiLabelSetColor(GUIEditor_Label[1], 255, 0, 0) GUIEditor_Label[2] = guiCreateLabel(80,173,204,21,"- Can not exceed 20 characters",false,creationWin) guiLabelSetColor(GUIEditor_Label[2], 255, 0, 0) GUIEditor_Label[3] = guiCreateLabel(82,206,204,21,"- Must be realistic",false,creationWin) guiLabelSetColor(GUIEditor_Label[3], 255, 0, 0) GUIEditor_Label[4] = guiCreateLabel(81,190,204,21,"- Can not be a celebrity's name",false,creationWin) guiLabelSetColor(GUIEditor_Label[4], 255, 0, 0) GUIEditor_Label[5] = guiCreateLabel(82,222,275,21,"- Can not have the same last name unless related",false,creationWin) guiLabelSetColor(GUIEditor_Label[5], 255, 0, 0) GUIEditor_Label[6] = guiCreateLabel(82,239,275,21,"- May only contain letters",false,creationWin) guiLabelSetColor(GUIEditor_Label[6], 255, 0, 0) end end end
  19. thank you uniqu3 that makes sense i kinda had a hunch it was mySQL related and as for varez....you know there are many ways you could go about this correct? lol maybe you shouldn't post if you have nothing useful to say I was trying to get an idea because I thought the admins who check the application entered the information manually into the database and that would be how they could add donators, admins, ect. but adding an event is also a way to go about it
  20. Yeah so I please get an example of how to do it with the timers and everything?
  21. but how can i bring that into my game mode???? I created what i want with the stage resource and got a .std file when I include that in my meta it doesnt do anything! I need the camera to move when a gui button is clicked and some peds doing activities in the back but when I start this it does nothing this resource is for recording movies with a video camera or playback recorder
  22. do they log in a player or account and if so how does it work?? if someone could explain in detail I would really appreciate it thank you
  23. how can I use that in-game? I need it because in my server you can create a character but when you click create character the camera moves to a new room and you can create your skin there however i need to move left but the moveObject only can move in one direction and i need to move back and then left...how can I accomplish this?
×
×
  • Create New...