-
Posts
171 -
Joined
-
Last visited
Everything posted by glowdemon1
-
Try updating it manualy at https://www.multitheftauto.com/
-
Uhm, aparently it doesn't have much to do with the MTA:SE, so I still require some help here.
-
I would, only if I were capable to.
-
My modem : http://puu.sh/4iVsn.png
-
[Outdated] Unofficial MTA Script Editor 0.3 (4851) RELEASED!
glowdemon1 replied to 50p's topic in Scripting
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 -
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
-
http://puu.sh/4iQzj.png - this one I mean.
-
the file with the name "server" - the one used to start up your server.
-
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.
-
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 ?
-
https://wiki.multitheftauto.com/wiki/Se ... tDimension
-
sleep() would be much easier, a more compact code and so on.
-
This looks dope AF, any chance on DL links ?
-
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.
-
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.
-
Serials are hardcoded. How do you know so sure you got a new serial ?
-
+++ HostSpree +++ | 'Cheap Prices, DDOS Protected'
glowdemon1 replied to HostSpree's topic in Hosting solutions
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 ? -
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.
-
Good luck, I'm looking forward to play on a server like this, this looks really awesome.
-
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.
-
Incase anything gets bugged, rather take some precauting stuff.
-
Alright, I'll try that. But would the scrip I said work ? I need reload the bikeshop every 15 minutes
-
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 ?
-
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.
-
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.
