Jump to content

Jaysds1

Members
  • Posts

    4,961
  • Joined

  • Last visited

Everything posted by Jaysds1

  1. ok, overstandable, Nice Video BTW 'SayCap'
  2. I know, but if you look at some turns, you could see that the car stops then moves, Drifting is moving while turning and does create skid marks and smoke, but when he turns, i don't see some skid marks.
  3. actually I meant in the Admin Resource, it should be located in the server folder and the file should be called 'admin_ip2c".
  4. Handbrake/Parking Brake: http://en.wikipedia.org/wiki/Hand_brake He used it to much, especially for turns.
  5. well, you would need to modify the script and type in the Countries name's.
  6. it's located where your mtaserver.conf file is.
  7. type in openports in the console/window, I'm not sure about the site and please post a SS again of it
  8. Jaysds1

    Admin Panel

    well, I'm not sure what you could do, you could try learning LUA then create an Admin Panel, but it's not going to be easy, as I am making one but chose to stop the development, I might continue it later on but not right now. anyways, I'm not sure what to say.
  9. try this: function player_Spawn() -- The source of this event is the player that just spawned. if getElementModel(source)~= 0 then --Check if their skin is 0 setElementModel(source,0) -- set spawned player skin to 0 end end addEventHandler ( "onPlayerSpawn", getRootElement(), player_Spawn ) function spawn ( ) -- The source of this event is the player who joined. spawnPlayer(source,0,0,0) end addEventHandler ( "onPlayerJoin", getRootElement(), spawn ) addEventHandler ( "onPlayerWasted", getRootElement(), spawn )
  10. Jaysds1

    Conventer

    lol, now you know
  11. Jaysds1

    Good??

    umm, I don't think that would be enough. try this: local projectiles = { [16]=true, [17]=true, [18]=true, [39]=true } function onWasted(killer, weapon, bodypart) --First get the weapon type if projectiles[weapon] then --this checks if it's a projectile givePlayerMoney(killer, 1000) --if it is, then give the player the money end end addEventHandler("onPlayerWasted",root, onWasted) Please read more on this page: Weapons
  12. try this please: function createPick (thePlayer) --thePlayer wasn't defined and please don't use the mta function as a function for your script, unless you want to add something with the createPickup local x, y, z = getElementPosition ( thePlayer ) local pickup = createPickup ( x + 2 , y + 2 , z + 0, 2, 2, 10000, 100 ) --the words and the semi-brackets were not needed. if (pickup ) then outputChatBox("Successful", thePlayer) else outputChatBox("Unsuccessful!", thePlayer) end end addCommandHandler("pickupWeapon", createPick ) -- Please not that when you create a command, there should be no space as the system would think it's an arguement and please make sure it's server-sided.
  13. Jaysds1

    Conventer

    Actually, here's a map converter: viewtopic.php?f=64&t=20573 http://gtamap.delux-host.com/converter/old/ Search more: http://www.bing.com/search?q=Convert%20 ... owAppsUI=1 http://www.google.com/search?q=Convert% ... owAppsUI=1
  14. Jaysds1

    Need help

    Please read this: Event_system
  15. actually, the values could go in with out using "tostring" or "tonumber". anyways, make sure this is server-sided. if it still doesn't work, try this: function trace(source) local x, y, z = getCameraMatrix(source) if x and y and z then outputChatBox("Your Camera Positions are x: "..(x).."; y: "..(y).."; z: "..(z),source) else outputChatBox("Test!!!",source) local x1,y1,z1 = getElementPosition(source) setCameraMatrix(source,x1,y1,z1+3,x1,y1,z1) -- this would set the camera looking down at you x, y, z = getCameraMatrix(source) --replace the current vars outputChatBox("Your Camera Positions are x: "..(x).."; y: "..(y).."; z: "..(z),source) setTimer(setCameraTarget,7000,1,source,source) setTimer(setCameraTarget,7000,1,source,source) end end addCommandHandler("t",trace)
  16. Nice, but too much handbrakes
  17. Jaysds1

    Help plzzz

    try this: x, y = guiGetScreenSize() --x is the width of the screen x = x - 100 --X is now 100 Pixel from the right end of the screen. dxDrawColorText ('#ffa500sb#ffffffgames#ffa500.com#ffffff.br', x,(y - dxGetFontHeight(250, 'default-bold')/2+1), 100, 100+1, tocolor ( 255, 255, 255, 255 ), 0.9, 'default-bold', 0.60, 'right') --screenHeight was not defined, I think you wanted to use y end and please read the comments
  18. Jaysds1

    Help plzzz

    He's trying to tell you that 'screenHeight' is not defined in the script...
  19. Well, I only know about the 'BaseMode' Gamemode but it's all about war...
  20. Sometimes I hate waiting so long but what I found useful is putting the MTA Window down then pulling it back up and it goes right through.
×
×
  • Create New...