Jump to content

Mr.Hankey

Members
  • Posts

    625
  • Joined

  • Last visited

Everything posted by Mr.Hankey

  1. you should start the race-mode manually once the server is up using /changemode race e.g: /changemode race race-vinwood Just starting the gamemode with the server will not work.
  2. I have the same problem sanzor... since the last two weeks my server crashes nearly everyday though it ran for weeks without problems before. I already tried resetting the server to the state it was in 2 weeks ago but it's still constantly crashing so i doubt it's one of the recently added resources fault. Maybe someone found an exploit in dm that allows him to easily freeze a server ?!
  3. already done twice here: https://community.multitheftauto.com/index.php?p= ... ails&id=94 and here: https://community.multitheftauto.com/index.php?p= ... ails&id=71
  4. I thought about a level/skill/item system like in WoW. That would definatly be something new. The aim would simply be to leveling up, collecting unique items and beeing the best I think with Peds as "Creeps" (or mops? im not into WoW ) it would be even better. Other Ideas: Destruction Race mode that also features on-foot "races" and where you could also just be a shooting passenger.
  5. Make an action-focused RPG (not one of these RP modes with "Name_Surename" crap)
  6. Write a debug ouput inside the "if source == marker then" check to make sure it reaches the part where the velocity is set. It's definatly working without setting a velocity along the Z-axis.
  7. erm... the script doesn't look like a client-side one and im pretty sure it isn't supposed to be one. jkub to solve the warning you are getting you need to grant the resource admin rights. You can simply do that by opening the acl.xml and adding <object name="resource.(name of the resource that needs admin access)" /> to the admin group. And well looking at your killMiniNoob function it really doesnt make sense to set a timer to call the same function 200ms later again.
  8. names = { "Burnout_King", "Drag_Master", "Speed_Freak", "Infernus_Drifter", "Turbocharged", "Supercharged", "Fat_Tyres", "Crap_Suspension", "Gearbox", "Clutch_Plate" } function checkName() if getClientName ( source ) == "Player" or getClientName (source) == "DP2.3" then setClientName ( source, names[math.random (1, #names)]..tostring(math.random(1,99))) end end addEventHandler ( "onPlayerJoin", getRootElement(), checkName ) first you need to convert the number you got from the math.random function (btw thats a standart lua function so it's not on the wiki) to a string and then connect the name string with the random number using two points. E.g.: if local a = "blah".."blubb" then a would be "blahblubb"
  9. This might work: names = { "Burnout_King", "Drag_Master", "Speed_Freak", "Infernus_Drifter", "Turbocharged", "Supercharged", "Fat_Tyres", "Crap_Suspension", "Gearbox", "Clutch_Plate" } function checkName() if getClientName ( source ) == "Player" or getClientName (source) == "DP2.3" then setClientName ( source, names[math.random (1, #names)]) end end addEventHandler ( "onPlayerJoin", getRootElement(), checkName )
  10. I'm pretty sure it was worked in the last test as i explained but as i already deleted the dp3 light installer I have no proof Is there anybody who has still got it? Then we could finally end this whole discussion
  11. In the public beta tests i noticed that you could use alt+tab but only if you're not connect to a server.
  12. Mr.Hankey

    Old lvl:s

    XIII seems not to run a MTA:DM server. Just stay with MTA:Race v1.1.2 (which you can download here) and you should find the server.
  13. Mr.Hankey

    MTA:Race

    just google for "d3dx9_33.dll" and click the first result (should be http://www.dll-files.com)
  14. viewtopic.php?f=91&t=23647 there you can download an api file that will highlight mta functions + an autocomplete functionality (only for notepad++ 5 and newer versions)
  15. in the folder "MTA San Adreas\Mods\map_editor" create a new folder called "maps"
  16. after you logged in as an admin simply press p
  17. There are already a lot of other topics about this problem... Next time use the search function please.
  18. 1. Where did i say to use "start" ?! The commands i wrote before are much more handy and you can't mess up things so quick. 2. The console says "access denied" because you're not logged in as an administrator. Read this again:
  19. just a simple example of how it should work: function leave () local result = call(getResourceFromName("datamanager"), "setData", tostring(getPlayerMoney(source))) if result == true then outputChatBox ("Money amount successfully saved.") else outputChatBox ("Failed to save the data.") end end addEventHandler ("onPlayerQuit", getRootElement(), leave)
  20. login as an admin (if you don't know how to do it read this: http://development.mtasa.com/index.php? ... nistrators) press f8 and use the following commands:
  21. You might want to take a look at this: viewtopic.php?t=21674
  22. http://files.multitheftauto.com/apps/1. ... config.xml The files were moved so the old wiki link doesnt work anymore.
×
×
  • Create New...