Jump to content

Mr.Hankey

Members
  • Posts

    625
  • Joined

  • Last visited

Everything posted by Mr.Hankey

  1. i thought my editor is unhandy but making a map with this would take ages wouldn't it?^^ (no offense) lol hidden credits everywhere
  2. xit is right i just added the jail lines and the function to free the player function jailPlayer(thePlayer, commandName, jailTarget) target = getPlayerFromNick(jailTarget) if (target) then setElementInterior ( target, interiorNumber ) setElementPostion ( target, x, y, z ) toggleAllControls ( target, false ) showCursor ( target, true ) --why do you want the cursor to be shown?! outputChatBox ( "You have been jailed and will be released in two minutes", target, 255, 0, 0 ) setTimer (unjail, 120000, 1, target) else outputChatBox ("Error: This player doesn't exist", thePlayer, 255, 100, 100) end end function unjail (target) if target then setElementInterior ( target, 0) setElementPosition (target, x, y, z) toggleAllControls (target, true) showCursor (target, false) outputChatBox ("You've been released.", target, 255, 100, 100) end end addCommandHandler("jail", jailPlayer)
  3. atm you cannot alter things like the weapon range but you can add more damage to all or only a few weapons, disable beeing damaged by a minigun or make the deagle instant killing
  4. i suggest you to login as an admin and then use /changemode or /changemode And please give me a bit more information, does your screen stay black when you join? if so it means that now gamemode is running so use the commands i mentioned before.
  5. read through this thread viewtopic.php?f=87&t=22296&p=274873#p274873
  6. i already said that in the post before =) Actually it's a resource for a server so you either have to set up a server on your own running this resource or you have to join a server that runs my editor script. Referring to THIS topic you can send jkub a pm and ask him what is his server because in the post he says he runs a server with the alternative_editor resource.
  7. i know but i always set the same speed for the rocket and the the problem is that i talk about one and the same projectile that has a different speed on 2 different pc's
  8. i just fixed the pacman script so it doesn't outputs any errors and the cocks are now turned along the z and not the x axis but i couldn't test it with other people because my router somehow doesn't wants to open ports anymore... Here is the link: http://rapidshare.com/files/99725611/peckman.zip.html Aeron could you upload the resource to mtabeta.com if you think it's fully working now? I think there are many people that would like to play this gamemode =) nope it's just that these scripts are using outdated syntaxes so they wont work with dp3 either
  9. I would try to remove the (theResource) argument, the if check if theResource is ~= getThisResource and the end before end of the function.
  10. As an alternative you could join or set up a server that uses this resource: https://community.multitheftauto.com/index.php?p= ... ails&id=84 but at the moment this editor is a bit rough and may not be that userfriendly =)
  11. Well actually you shouldn't be able to see roads that are created by other players because the objects are created clientside and the thing with the freeroam gui is because I just haven't made the editor compatible with other resources like freeroam gui yet but at first you could open the options menu of the editor with "j" at the same time as you use the freeroamgui so as long as the options window is open you won't spawn any objects by clicking somewhere. I think in the next version i will add a feature so you can set in the meta.xml if only admins or all players should be able to use the editor.
  12. omg now i feel really stupid becausei didn't notice the obviouse reason why the function was called every second
  13. the function privilegs are defined in the acl.xml for each group. For example the default group cant access the function to start a resource: <right name="function.startResource" access="false"/> but the admin group can: <right name="function.startResource" access="true"/> i dont know if this answeres your question but that's all i know =)
  14. the name after user. doesn't have to be your ingamename it must be a username that is specified in the accounts.xml
  15. maybe there's an easier solution but this should work except on your server admins don't have the right to ban ips^^: function onVEnter( player, seat, jacked ) local is_admin_car = getElementData(source, "admin_car") if is_admin_car == "1" and hasObjectPermissionTo ( playerSource, "function.banIP", false) == false then cancelEvent() end end addEventHandler( "onVehicleStartEnter", root, onVEnter)
  16. wtf?! every second??? setTimer (the_function, 1000, 1) should call the function just one other time after it was executet not forever...
  17. then try my second suggestion: function replaceModel() txd = engineLoadTXD ( "hunter.txd" ) engineImportTXD ( txd, 425 ) dff = engineLoadDFF ( "hunter.dff", 425 ) engineReplaceModel ( dff, 425 ) setTimer (replaceModel, 1000, 1) end addEventHandler ( "onClientResourceStart", getResourceRootElement(getThisResource()), replaceModel)
  18. seems like the server for the changelog was the same as the one that error reports are sent to because after each crash i get this message from the error reporter "Error sending report (404)"
  19. not really, normally that happens because the textur isn't loaded before it's applied to the vehicle so either you fix the script so it works or you just call the replace function twice then it should work too
  20. Mr.Hankey

    Freeroam

    https://community.multitheftauto.com/index.php?p= ... ails&id=43 there you can download the current version of the Freeroam GUI that is the resource you were looking for =)
  21. it's always good to type help into the console to see all the hardcoded mta commands like /showchat and /shownametags and /hud sometimes those function also disable the console so to see the chatbox again you have to rejoin the server =)
  22. just read through this maybe you'll find a solution there http://development.mtasa.com/index.php? ... sues_-_FAQ
  23. try to click again then the welcome screen of gtasa should appear
  24. damn good news =) im really looking forward to see some awsome driftig servers and freeroam with spider handling
×
×
  • Create New...