Jump to content

TheRealCow

Members
  • Posts

    64
  • Joined

  • Last visited

Everything posted by TheRealCow

  1. like in race ? it shows in down left map name?
  2. edit resource where u have this, i think its freeroam?
  3. pretty hard to understand something whit die in, maybe spawning and respawning ?
  4. hmm, there isnt much same but enyway! Nice Video!
  5. TheRealCow

    Race ERROR

    Race will be okey, but if u have only one map, then it will show error, and votemap window wont show up. so, u need 10 maps for showing it up, but, u can start map whit admin panel. And if in map tab are the map file in "Race" category, then just start it, but if it isnt, then u have make mistake in map meta.xml or the map will be bad
  6. use /debugscript 3 in game.
  7. MaddDog i think he want this: setTimer ( outputChatBox, 20000, 0, "blah blah blah", 255, 255, 0 ) for timer u should use this SetTimer and if u moved a bit down, then there is exampel, what u need
  8. the maps was realy nice, and nice server nice work, everything is nice
  9. this script will create always new pickup when eny script start. use this to fix it: local resroot = getResourceRootElement(getThisResource()) local root = getRootElement() addEventHandler("onResourceStart", resroot, function() a = createPickup (-707, 973, 12, 0, 0, 0) end ) addEventHandler("onPickupUse", root, function( thePlayer ) if (source == a) then local health = getElementHealth(thePlayer) if (health >=5 and health <= 100) then local money = getPlayerMoney(thePlayer) if (money >= 100) then takePlayerMoney(thePlayer, 100) setElementHealth ( thePlayer, 100 ) outputChatBox("* A hot nurse gave you a nice healing process!", thePlayer) else outputChatBox("* You dont have enough money!", thePlayer ) end else outputChatBox("*You are healhty enough to be alife", thePlayer) end end end )
  10. no it wasnt fail, but u need for that script that "baam" sound too..
  11. they are named same.. look at my earlyer post
  12. function replaceModel() local skin = engineLoadTXD ( "skins/80.txd" ) engineImportTXD ( skin, 80 ) local skin2 = engineLoadTXD ( "skins/81.txd" ) engineImportTXD ( skin2, 81 .end addEventHandler ( "onClientResourceStart", getResourceRootElement(getThisResource()), replaceModel)
  13. damn, need to remake that script
  14. function bla ( ) outputChatBox ("help im pinned down at los santos airport", getRootElement(), 0,255,0 ) end addCommandHandler ("r", bla ) something like that??
  15. one question more.. did all client side things been showed only local player? like settVehicleHeadlightColor and those??
  16. awesom! i visited the server!
  17. TheRealCow

    [help]Gate

    thats a capy of that: http://www.forum.multitheftauto.com/viewtopic.php?f=91&t=28251&start=0
  18. oke, enyway, thx 50p, idk why, but it wasnt showed nametag color, when freeroam wasnt runned. When freeroam run, then it works thx
  19. function nametagcolor ( red, green, blue ) setPlayerNametagColor ( source, tonumber(red), tonumber(green), tonumber(blue) ) end addEvent ( "nametagcolor", true ) addEventHandler ( "nametagcolor", getRootElement(), nametagcolor ) still dosent do enything. no errors
×
×
  • Create New...