Jump to content

alwSmokE

Members
  • Posts

    54
  • Joined

  • Last visited

Everything posted by alwSmokE

  1. Newest Nightly Build fixes it! Thanks a ton!
  2. I want to run at 1680x945. Can't seem to be able to find out how anywhere... Can anyone help? 1680x945 is native resolution for my laptop. GTASA doesn't like it. I have a Nvidia 360m. The best thing I can do so far is 1280x800 which I'm running windowed mode. My desktop pc runs at 1680x1050 which GTASA seems to be ok with. Why is 1680x945 not kosher with GTASA? Why isn't there any way to force custom resolutions to GTASA?
  3. I had to remove that randomseed line about a week ago. It started doing it again. But removing that line fixed it. On a side note, I had to also do a complete reinstall (removing all previous versions) to get our map editor server to work right.
  4. I wonder if it's a soundcard/driver on vista/7 issue. I have a soundblaster audigy2. What about you?
  5. We have edited this resource to include new sounds and a random selection thing for the events. It works great. Except on my primary computer. The sounds cut off too soon on my end. It works for others and my 2nd computer plays them fine. The only thing I can think of is my main pc is using vista and it runs at 60 fps. My 2nd pc is on xp and doesn't quite hit full fps. Does anyone know anything about this? Some of the sounds are a little longer than the original files.
  6. Is there a way to make this a little bit bigger? I'm guessing making it about 1.5 times the current size? Or that may be too much... I don't know, it just seems a bit too small. I have my chatbox at 1.5 times the default size and that is perfect. I've tried messing around with the code, but nothing I do works. I don't really know much about this sort of thing. I have our race server dxscoreboard set to show the server info and game mode and map. How hard would it be to have it also display the map's rating next to or under it?
  7. Benji, yours works better. If you can tell DazzaJay I'm banned from Pothole Studios forums again, that would be great. I think he's trying to keep someone else out, and I keep getting shafted. I don't want to be banzored.
  8. So...... ....how would you do that? ***EDIT*** I got it! Thanks for your help AcidbRain! https://community.multitheftauto.com/index.html?p ... ils&id=467 I hope you don't mind I released it to the general public as a resource... so now the great unwashed can enjoy it.
  9. Ok I edited the meta file (I think) to have a client thing as well. But this is what happens. I'm close... Any ideas? ***Edit*** Just messing with it, and and now it's starting to spam the chatbox:
  10. Hey thanks, but I have no idea what to do with that. I'm gonna try to figure it out, but I don't know that much about this stuff. My guess is sticking this somewhere in the mapratings_server.lua file? Or wait... is there a mapratings_client? hmmmm.... I might can figure this out... ***Edit*** I added those lines to the end of the mapratings_server.lua file. Then I added a file called mapratings_client.lua and put in the other lines. But it doesn't do anything.
  11. How do you get the map ratings to be displayed when the map starts? I want the chatbox to say something like: Blow the damn started rate 0/10 or something like that.
  12. Restarting the computer the server is running on fixed it for me.
  13. g_SpawnPoints = { } g_SpawnPoints[1] = { x= -711, y= 957, z=12.4, dx=5, dy=5 } g_SpawnPoints[2] = { x= 2058, y=-3122, z=18, dx=5, dy=5 } g_SpawnPoints[3] = { x= 2017, y=-2540, z=14, dx=5, dy=5 } function spawn(player) math.randomseed(getTickCount()) -- choose a spawnpoint local sp = g_SpawnPoints[math.random(#g_SpawnPoints)] --spawn player using spawnpoint params repeat until spawnPlayer (player, sp.x+math.random(sp.dx), sp.y+math.random(sp.dy), sp.z, math.random(360), math.random(9,288)) fadeCamera(player, true) setCameraTarget(player, player) end Thanks to DazzaaJay and Benji on the potholestudios site! This works.
  14. Let me preface this by saying I don't know much about coding. I want to add more spawnpoints to my freeroam server. I found the lua file (I think) that needs to be edited in the Play resource. I've edited it so it looks like this: addEventHandler("onResourceStart", resourceRoot, function() for i,player in ipairs(getElementsByType("player")) do spawn(player) end end ) function spawn(player) repeat until spawnPlayer ( player, -711+math.random(1,5), 957+math.random(5,9), 12.4, 90, math.random(9,288) ) fadeCamera(player, true) setCameraTarget(player, player) repeat until spawnPlayer ( player, 2058+math.random(1,5), -3122+math.random(5,9), 18, 90, math.random(9,288) ) fadeCamera(player, true) setCameraTarget(player, player) repeat until spawnPlayer ( player, 2017+math.random(1,5), -2540+math.random(5,9), 14, 90, math.random(9,288) ) fadeCamera(player, true) setCameraTarget(player, player) end addEventHandler("onPlayerJoin", root, function() spawn(source) end ) addEventHandler("onPlayerWasted", root, function() setTimer(spawn, 1800, 1, source) end ) This has worked to change the spawnpoint to one of the new ones. But it only uses one spawnpoint. I want it to randomly select one. I also want to add more spawnpoints when I get this working. Any help would be greatly appreciated.
  15. When I try to log into my MTASA account from the main menu, I get an error saying that "Services Currently Unavailable". Are they still unavailable? Or is something wrong on my end? It worked on the DP's, just not on 1.0. ...I'm talking about the main menu of the game, not the forums...
  16. That's the thing, it is the updated version.
  17. Restarting the server box fixed the problem. Thanks for your help.
  18. Do any of you guys have any idea what would cause a race server to screw up when cycling maps? If I restart the server, it'll play one map fine. Then it will play one of two maps, then the other. It'll only play those two maps unless I restart the race resource or restart the server. If I turn random maps off, the same choices will be in the map vote selection for every map vote. If I delete the two maps, it'll pick two different maps, but do the same thing. Our server was running just fine yesterday. Then today it started doing this. As far as I know, nothing has changed in the setup. Any suggestions would be greatly appreciated.
  19. Found it. It saves it to: C:\Users\\AppData\Local\VirtualStore\Program Files\MTA San Andreas\server\mods\deathmatch\resources\ I never would have thought to look there. An advanced search in Vista found it. Might be helpful for others in my situation.
  20. Maps made in the map editor or local server will save in this folder: C:\Program Files\MTA San Andreas\server\mods\deathmatch\resources That's great. But when I ran a dedicated server on my computer and put in several more hours of work on a map and saved it, the map didn't show up in that folder. I can run the dedicated server and load it, but I can't find the file anywhere. I've searched my entire computer for it. Nothing with the map name anywhere. I hope I am clear enough in my problem. The map should show up in the folder listed above, it should be somewhere. It is somewhere. I just can't find it. Please help!
  21. Because I couldn't leave well enough alone... http://media.putfile.com/mta-jingle-bells-solo- I went solo.
  22. http://media.putfile.com/MTA-Jingle-Bells from your friends at GamersEdge.org This took entirely too long to put together. We hope you enjoy.
  23. Don't want to do it the hard way, but if you'd like, check out all my race maps!: http://gamersedge.org/forum/dload.php?a ... file_id=40 Can't wait for the DM map editor!
×
×
  • Create New...