Jump to content

glowdemon1

Members
  • Posts

    171
  • Joined

  • Last visited

Everything posted by glowdemon1

  1. Try updating it manualy at https://www.multitheftauto.com/
  2. Uhm, aparently it doesn't have much to do with the MTA:SE, so I still require some help here.
  3. I would, only if I were capable to.
  4. My modem : http://puu.sh/4iVsn.png
  5. Eh, I've got no clue what's going on... But whenever I try to open my server trough this IDE it seems to corrupt the file, it just opens the server and shuts it down after like .. 3 seconds. However when I don't use this IDE it doesn't seem to corrupt this file. Linking : https://forum.multitheftauto.com/viewtopic.php?f=105&t=64859
  6. I copied it back in from another server folder I have, unfortunately it keeps on dissapearing. Linking: viewtopic.php?f=91&t=24834&p=612594#p612594
  7. http://puu.sh/4iQzj.png - this one I mean.
  8. the file with the name "server" - the one used to start up your server.
  9. Howdy, whenever I try to run my server, the console pops up and after five seconds the console just closes and deletes the "server" file. Thought I'd put the issue here. I haven't used anything in my scripts that could delete this file, I have no clue whats up.
  10. Any recommendations on this ? How's the ddos protection ? I'm looking for a server in Netherland, and this seems to fit the most as I can pay by text now, does paying by text cost more compared to credit card ?
  11. https://wiki.multitheftauto.com/wiki/Se ... tDimension
  12. sleep() would be much easier, a more compact code and so on.
  13. This looks dope AF, any chance on DL links ?
  14. Hi, my suggestion is to implement a simple sleep(time) function, this can be used to delay something in your functions, for instance : outputChatBox("I have waited 0 seconds") sleep(10000) -- Sleep in ms. outputChatBox("I have waited 10 seconds") I dislike the fact that I have to add timers and such which will eventualy make your code a mess.
  15. This is however really buggy sometimes when a vehicle gets a large ammount of damage in a short ammount of time (E.G: When you drive over it with a dumper) - This can be seen in lots of RP servers.
  16. Serials are hardcoded. How do you know so sure you got a new serial ?
  17. Ddos protection ? In your title you use that but you don't use that in your features list. And can you give us more info about this protection ?
  18. Agreed with everyone above me, if you're not going to show some screenshots or additional/more information, you're gonna have a bad time.
  19. Good luck, I'm looking forward to play on a server like this, this looks really awesome.
  20. Hi, I'm trying to port forward my server, unfortunately this didn't go the way as I wanted it to be, I forwarded my ports, yet whenever I use "openports" in my console, it outputs that UDP 22126, UDP 22003 and TCP 22005 is closed, this however should not be the case as I opened them correctly, I think. Here's my settings : http://puu.sh/4i5WO.png - Here's the nescesary translations for the page : lokaal IP-adress : local IP begin poort : begin port Eind poort : end port etc.. if there's anything you don't understand, hit me up.
  21. Incase anything gets bugged, rather take some precauting stuff.
  22. Alright, I'll try that. But would the scrip I said work ? I need reload the bikeshop every 15 minutes
  23. Alright so, aparently : notLockableVehicles = {594, 606, 607, 611, 584, 608, 435, 450, 591, 539, 441, 464, 501, 465, 564, 472, 473, 493, 595, 484, 430, 453, 452, 446, 454, 581, 509, 481, 462, 521, 463, 510, 522, 461, 448, 468, 586, 425, 520} I guess I'll have to make it so that the script restarts each couple of minutes, would while true do setTimer(bikeShop,900000,1)-- executes bikeShop once each fifteen minutes end work ?
  24. Mh, well I've struck on yet another problem, whenever I try to lock certain vehicles upon spawning, it just doesn't lock them, here's teh code : function freezeElements() setElementFrozen(lowriderBike,true) setElementFrozen(bmxBike, true) setElementFrozen(mountainbikeBike,true) end function bikeShop() lowriderBike = createVehicle(509, 698.6, -521.20, 16,0,0,225) setVehicleLocked(lowriderBike, true) bmxBike = createVehicle(481, 695.6, -521.20, 16,0,0,225) setVehicleLocked(bmxBike,true) mountainbikeBike = createVehicle(510, 692.6, -521.20, 16,0,0,225) setVehicleLocked(mountainbikeBike,true) end setTimer(freezeElements,90,1) addEventHandler("onResourceStart", getRootElement(), bikeShop) Its kind of messy indeed, but I'm not the best coder, heh.
  25. Yeah, I was thinking of something easier, more compact that only requires one line, like wait() or sleep(). Well anyhow I dedicated a new function to this timer and it works now,but I was hoping there would be a more compact thing.
×
×
  • Create New...