Jump to content

X-SHADOW

Members
  • Posts

    721
  • Joined

  • Last visited

Everything posted by X-SHADOW

  1. X-SHADOW

    Resource

    https://community.multitheftauto.com/index.php?p= ... ls&id=2847 Business Resouce.
  2. X-SHADOW

    script prob

    ClientSide--- function stop ( attacker, weapon, bodypart ) if ( weapon == 4 ) then cancelEvent() outputChatBox('You Can,t Kill With Knife',source,255,255,0) end end addEventHandler ( "onClientPlayerDamage", getLocalPlayer(), stop )
  3. X-SHADOW

    Need Help

    you have to enter an vehicle and test it Because he using local vehicule = getPedOccupiedVehicle(thePlayer) he get the car you sit on .
  4. i think he mean Encrypted script if it Encrypted i think you cant . Edit: Click on it to see the example .
  5. i want the ped that i hit fly away with the direction of the hit. thats my script do ?
  6. believe me or not its up to you ^^
  7. i swear i have 4GB iam in Saudi Arabic we have Compny Named 'STC' and pay 1 month $120
  8. function hit (killer, killerweapon, bodypart) if (killer) and (killer ~=source) then local x,y,z = getElementPosition(source) setElementPosition(source,x,y+0.1,z+0.1) outputChatBox('You Got Hit an Moved to BlaBlaBla',source,255,255,0) end addEventHandler ( "onClientPlayerDamage", getLocalPlayer(), hit)
  9. X-SHADOW

    Player list

    show your full code .
  10. X-SHADOW

    Player list

    why you use getElementsByType 2 times ? function onClientGUIChanged() local name = guiGetText(source) if string.find(getPlayerName(player):lower(), name:lower()) then local column = guiGridListAddColumn ( playerlist, "Player Name", 1.50 ) if ( column ) then for id, playeritem in ipairs ( getElementsByType ( "player" ) ) do local row = guiGridListAddRow ( playerlist ) guiGridListSetItemText ( playerlist, row, column, getPlayerName( playeritem ), false, false ) end end end end addEventHandler("onClientGUIChanged", bhsh, onClientGUIChanged)
  11. X-SHADOW

    Need help

    server.lua addEvent("onZombieWasted",true) addEventHandler("onZombieWasted",getRootElement(), function (killer) givePlayerMoney(killer,math.random(100,200)) end) meta.xml <meta> <info author="mtafourm" version="1.0" type="script" name="MoneyReward" /> <script src="server.lua" type="server"/> </meta>
  12. All you have to make with scripting exepect the countdown with move camera you can fined it on community website .
  13. and my speed is 4 GB i can download GTAIV AND Call of Duty MW3 in 2 hours
  14. X-SHADOW

    Need help

    posX="" posY="" posZ="" these are the spawn points you can make it like this posX="Here Your Pos X" posY="Here Your Pos Y" posZ="Here Your Pos Z" and you can get them form admin Panel
  15. X-SHADOW

    MySql help

    Yes it do if your not admin /shutdown wont Work .
  16. X-SHADOW

    MySql help

    Dose it Have Admin Rights ? and Are You Admin ?
  17. make sure its ServerSide in meta.xml
  18. he say - change to false if you want it private.
  19. and can you show your full code please ?
  20. you want if you are in a vehicle you want to spawn your self with the vehicle ?
  21. what are you trying to make here ?
  22. addEventHandler( 'onResourceStart', root, function( Kenix) if getElementType( Kenix ) == 'player' and isPedInVehicle( Kenix ) then spawnPlayer ( Kenix, 1762.1877441406, 815.47033691406, 10.41355895996914 ) outputChatBox("* Successfully spawn ", source, 0, 255, 0) end end)
×
×
  • Create New...