Jump to content

flowz

Members
  • Posts

    48
  • Joined

  • Last visited

Details

  • Gang
    Universal Roleplay

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

flowz's Achievements

Rat

Rat (9/54)

0

Reputation

  1. Well, Callum you're trying to say that there are over 30 servers in MTA that aren't using the same modified resource and I even said I won't share it I am just learning the code.
  2. Well I am working on some old scripts that I found and just trying to figure out the code, I won't share I am just learning how the creator created the code and trying to solve everything and get it fully functioning so I can start working on something similar from scratch, the server is private and is localhost and can only be viewed by me. [ Ports Status : Closed ] I would really appreciate if you can help me so I can move on further.
  3. Do I have to place the resources in the directory of the script such as ' Folder 'scriptcompile' ' So I place all of the scripts that I need to compile in the same directory as script?
  4. I have over 30+ resources that need re-compiling, how can I do it all at once? D; It took me like 5 mins to do 6 resources. It's really hard and takes up too much time.. Please help.
  5. flowz

    MySQL Help¬¬

    Looking for someone who can teach me MySQL Scripting for MTASA, - Connecting MTASA Scripts to MySQL Database, creating scripts connected to MySQL Databases etc. I am willing to give a private offer tell me if your interested.
  6. flowz

    Help URGENT!!

    Any starter code can you start me off
  7. I want to learn how to connect the scripts to MYSQL
  8. flowz

    Help URGENT!!

    Well I want to make a script so after the person has logged in it shows an intro like the camera flies through the city and stops at certain points and explains etc. For example it starts from flying from City Hall to LSPD and then faces LSPD and shows a GUI explaining LSPD.. Please help I don't know how to make it.
  9. I made my server side MySQL script to connect to my MySQL Database but now how can I create MySQL Scripts such as account system connected to MySQL etc etc.
  10. flowz

    Help SQL!!!

    How can I learn SQL and how to connect it with scripts? ??
  11. --CLIENT SIDE-- function onSpawn() wLogin = guiCreateWindow(200, 216, 366, 110, "", false) guiWindowSetSizable(wLogin, false) guiWindowSetMovable(wLogin, false) iName = guiCreateLabel(28, 33, 90, 15, "In-Game Name : ", false, wLogin) iEdit = guiCreateEdit(121, 27, 212, 31, "Firstname_Lastname", false, wLogin) iLogin = guiCreateButton(24, 68, 97, 31, "Login", false, wLogin) showCursor( true ) end addEventHandler("onPlayerJoin", root, onSpawn) function startSpawn() --При старте onSpawn() end addEventHandler("onClientResourceStart",getResourceRootElement(getThisResource()),onSpawn) local thePed = getPlayerFromName() function loginAccept() if source == iEdit and iLogin then setPlayerNametagText ( thePed, .. iEdit ) setElementPosition( source, 1953.69666, -1765.17114, 13.54688 ) fadeCamera ( true, 4 ) end end addEventHandler("onClientGUIClick", root, loginAccept) When I remove the bottom part my GUI appears, I think my bottom code don't work please help me.
  12. I meant in Scripting hehe.
  13. I want something like this in LUA only not in XML ---- Server Side ---- local tagName = { vehicle id="411" name="Acura NSX", vehicle id="587" name="Audi R8", vehicle id="533" name="BMW 528 Cabrio", vehicle id="426" name="BMW 750iL", vehicle id="402" name="Chevrolet Camaro '92", vehicle id="603" name="Chevrolet Chevelle SS '72", vehicle id="429" name="Chevrolet Corvette C6", vehicle id="542" name="Dodge Challenger R/T '70", vehicle id="451" name="Ferrari Enzo", vehicle id="415" name="Ferrari Testarossa", vehicle id="565" name="Honda Civic", vehicle id="480" name="Honda S2000", vehicle id="541" name="Koenigsegg CCX", vehicle id="502" name="Lamborghini Miura", vehicle id="496" name="Lancia Delta HF", vehicle id="475" name="Mercury Cyclone '71", vehicle id="506" name="Mitsubishi 3000GT", vehicle id="560" name="Mitsubishi Lancer EVO IX MR", vehicle id="602" name="Nissan 350Z", vehicle id="494" name="Nissan GT-R", vehicle id="526" name="Nissan Silvia S-13", vehicle id="562" name="Nissan Skyline R-34", vehicle id="477" name="Mazda RX-7", vehicle id="503" name="Mazda RX-7 Veilside", vehicle id="549" name="Plymouth Hemi Cuda 440 '70", vehicle id="468" name="Sanchez (GTA IV)", vehicle id="558" name="Toyota Corolla AE-86", vehicle id="559" name="Toyota Supra", vehicle id="589" name="Volkswagen Golf GTI", vehicle id="520" name="F-18 Jet", vehicle id="539" name="Half-Life 2 boat", vehicle id="497" name="Police Huey" } And the other code in Server Side is outputChatBox("(( This " .. tagName .. " is a civilian vehicle. ))", thePlayer, 255, 195, 14) (( NOTE : ONLY SOME OF THE CODE )) So when the player enters the car it display it in a outputChatBox. Any ideas? Please help I really need.
×
×
  • Create New...