Jump to content

uhm

Members
  • Posts

    275
  • Joined

  • Last visited

Everything posted by uhm

  1. uhm

    Question

    It just involves overwriting files, so I suggest downloading an existing theme and using that as your guide. For example, JSpace by Jaysds1.
  2. uhm

    Problem with server

    does it still put those error messages about the internal database in the console? is your server fps still 0?
  3. uhm

    Problem with server

    oh check out the error messages about internal.db do the couple of steps on https://wiki.multitheftauto.com/wiki/Fixdb#Easy_way let me know if it works
  4. uhm

    Problem with server

    can it be your firewall? does mtaserver.exe say the following yellow things:
  5. uhm

    Problem with server

    what do you see when you open the local tab in the browser? does it appear there? to which IP are you connecting?
  6. Hallo Du må opprette en fil, for eksempel "server.lua" hot. I denne filen sette LUA-koden. I meta.xml din kan du sette den som "src" er navnet på den filen. så: script.lua inkluderer: local spawnX, spawnY, spawnZ = 1959.55, -1714.46, 10 function joinHandler() spawnPlayer(source, spawnX, spawnY, spawnZ) fadeCamera(source, true) setCameraTarget(source, source) outputChatBox(" Welcome to My Server ", source) end addEventHandler("onPlayerJoin", getRootElement(), joinHandler) Og meta.xml inkluderer: <meta> <info author="YourName" type="gamemode" name="My Server" description="My first MTA server" /> <script src="server.lua" /> </meta> Beklager for min norsk er dette oversatt fra nederlandsk til norsk.
  7. Most likely won't be supported since the SAMP community makes those themselves It is complex to import those objects, but if you are willing here is a description of what you need to do: viewtopic.php?f=91&t=51634#p504196
  8. but did you also install MTA-MySQL? http://code.google.com/p/multitheftauto ... o&can=2&q= (put it in mods/deathmatch/modules/) just troubleshooting here
  9. whats it look like in your db? is it like model id/spawn coords/colors/...? if so, then the element you should refer to is the one createVehicle returns you call it when you loop through the returned database rows
  10. wie Mysteriös das der File name X'en sind Nein, aber ich weiß es nicht.
  11. Ačiū už jūsų patarimus ir atkreipti mano dėmesį į šią temą vėl. Tai tiesiog, kad reperis skamba lygiai taip pat kaip Eminem, tai kodėl man patinka. Tai yra tai, ką mano Lietuvos atrodo. Atsiprašome, kad ji gali atrodyti kaip svaičiojimas. Šį kartą aš įdėti jį į "Google Translate".
  12. Oh wow, I did not know about this. I guess it's more of a pure GTA modding thing than scripting then. I quickly glanced at GTAGarage and this is the closest I could find: http://www.gtagarage.com/mods/show.php?id=18751 Somebody with more modding experience should probably reply to this.
  13. +1 anything saints row but damn thats not that easy i'd say use dxDrawLine3D and then some more code to make the laser beams go out with little pauses then add some particle effects to the gun exit point but I think this is quite a lot of work especially the fine tuning to make it look as good as it does
  14. Nice going Raahim, keep it up! As you know you're very welcome at these forums for scripting help.
  15. uhm

    Open Ports With Security

    you mean you want us to recommend you a good anti virus suite with firewall and such? I have used a handful of suites before (Norton, Norman, ZoneAlarm, McAfee) but I recently renewed my license for the 3rd year for G Data (version InternetSecurity). It's light, updates virus definitions every hour, uses two engines to scan for viruses. Recently there was this attack that a Dutch news website got hacked and was used to infect visitors (of any web browser). Only three suites were able to prevent infection. One of those was G Data, because it's just so up to date. The others were Avast and Kaspersky, which are also commendable. Source (NL). Well for your purpose I don't think you're at a higher level of risk, except for DDoS attacks. For that you would probably want to enable that router firewall functionality.
  16. uhm

    [Help] Console

    do you get it when you close the window? then instead of clicking X press CTRL+C inside the server window. (as the server console actually suggests). Are you using Windows Server 2008 by the way? Thumbs up! .
  17. uhm

    Questions

    Check my replies at: viewtopic.php?f=91&t=51757&hilit=+guiGetScreenSize#p504988
  18. yes, but you may want to consider opening the connection every time before a block of queries and closing it when you're done, together with the freeing of the result (as opposed to creating the sql connection just on resource start for example) mysql just isn't made for persistent connections
  19. uhm

    MTA SA Problem.

    Because the invisible object is one added by SAMP and not available in MTA. If you want to import it yourself, you may find my instructions valuable at: viewtopic.php?f=91&t=51634#p504196 Otherwise you may want to look for an alternative object.
  20. uhm

    Help

    It's not that guessable apparently, check out: http://www.neowin.net/forum/topic/31700 ... y585896503 md5(concat(MD5(c.converge_pass_salt),md5('?password'))) Stored_password = md5( md5(salt) + md5(password) ) also on here I read that if it's any IPB before version 2.2, the password is simply md5($password);
  21. Not dropbox, it does not work. Check out my video: (watch on YouTube for fullscreen hd)
  22. Are you using an external server for content delivery? Is this still an issue?
  23. uhm

    Not hosting

    Check out the section on Port forwarding on the wiki: https://wiki.multitheftauto.com/wiki/Ser ... forwarding If you have done this and it still won't work, check the firewall and add an exception for your server port(s).
  24. Ah, no unfortunately not. Because Mediafire uses a custom system of links. However, you may be interested in using Dropbox as file provider. Check my instructions here: viewtopic.php?f=108&t=51642#p504145
  25. Hello. I also did not understand your post, especially not "Also, do not print the chat to a vehicle stocked." However, I did see an error that might fix your problems. Try this: function Autocsinalas(thePlayer, command, vehicleModel) local x,y,z = getElementPosition(thePlayer) x = x + 5 local createdVehicle = createVehicle(tonumber(vehicleModel),x,y,z) local vehname = getVehicleName (createdVehicle) -- The error was above, because you must put the vehicle as parameter, not the vehicle ID. outputChatBox("A lekért jármu : "..vehname.." ("..vehicleModel..")",thePlayer) if (createdVehicle == false) then outputChatBox("A jármu lehívása sikertelen.",thePlayer) end end addCommandHandler("veh", Autocsinalas)
×
×
  • Create New...