Jump to content

Storm-Hanma

Members
  • Posts

    677
  • Joined

  • Last visited

  • Days Won

    7

Posts posted by Storm-Hanma

  1. Salam mere bhai sabko salam !kahariat? Allahmudillah 

    Bai mene ek disable warp le script banale wo work kar raha hai but usse muje f1 panel me add karna hai jaise ke for example

    Fall of bike option jaise-

    Same like this disable warp-warp mode on and warp mode off

    Isse players disable warp on or off karsakte hai agar koi suggest karge kya? How to add in f1 panel !!

    Agar apko free server hona ho to comment or pm karre me free server dunga !!

  2. Mere pass payoneer account hai me india ka hu bhai

    On 4/27/2015 at 4:13 PM, Donut. said:

    PayPal Pakistan ko support is liye nai karta kyun ke ise lagta hai ke Pakistanis deshat gard hain aur deshat gardi ka dar hai is liye Pakistan mein paypal nai hai.

    Bro paypal india ko be teke se support nahi karta bus crdit card support karta hai exvept tunisa all other countries credit card kam karta hai paypal me no debit cards

  3. Guys i scripted a command of disable warp its done but i need a idea how to add kaise kare f1 panel me kisko hata hai kya idea hai kisko ? Ye correct hai nah?

     

     

    function warpStatus(player,cmd)

         if player then

              if (getElementData(player,"warp.status") == false) then

                   setElementData(player, "warp.status", true)

                   outputChatBox("You have enabled your warping", player)

              else

                   setElementData(player, "warp.status", false)

                   outputChatBox("You have disabled warping", player)

              end

         end

    end

    addCommandHandler("warpstatus", warpStatus)

     

    function warpMe(targetPlayer)

        if (getElementData(targetPlayer,"warp.status") == false) then

        if isPedDead(source) then

            spawnMe()

        end

     

        local vehicle = getPedOccupiedVehicle(targetPlayer)

        if not vehicle then

            -- target player is not in a vehicle - just warp next to him

            local x, y, z = getElementPosition(targetPlayer)

            clientCall(source, 'setPlayerPosition', x + 2, y, z)

        else

            -- target player is in a vehicle - warp into it if there's space left

            if getPedOccupiedVehicle(source) then

                --removePlayerFromVehicle(source)

                outputChatBox('Get out of your vehicle first.', source)

                return

            end

            local numseats = getVehicleMaxPassengers(vehicle)

            for i=0,numseats do

                if not getVehicleOccupant(vehicle, i) then

                    if isPedDead(source) then

                        local x, y, z = getElementPosition(vehicle)

                        spawnMe(x + 4, y, z + 1)

                    end

                    warpPedIntoVehicle(source, vehicle, i)

                    return

                end

            end

            outputChatBox('No free seats left in ' .. getPlayerName(targetPlayer) .. 's vehicle.', source, 255, 0, 0)

          

        end

        local interior = getElementInterior(targetPlayer)

        setElementInterior(source, interior)

        setCameraInterior(source, interior)

    end

    • Is this correct for disable warp for freeroam and how to add option in f1 panel?  
    •  
    • function warpStatus(player,cmd)
    •      if player then
    •           if (getElementData(player,"warp.status") == false) then
    •                setElementData(player, "warp.status", true)
    •                outputChatBox("You have enabled your warping", player)
    •           else
    •                setElementData(player, "warp.status", false)
    •                outputChatBox("You have disabled warping", player)
    •           end
    •      end
    • end
    • addCommandHandler("warpstatus", warpStatus)
    •  
    • function warpMe(targetPlayer)
    •     if (getElementData(targetPlayer,"warp.status") == false) then
    •     if isPedDead(source) then
    •         spawnMe()
    •     end
    •  
    •     local vehicle = getPedOccupiedVehicle(targetPlayer)
    •     if not vehicle then
    •         -- target player is not in a vehicle - just warp next to him
    •         local x, y, z = getElementPosition(targetPlayer)
    •         clientCall(source, 'setPlayerPosition', x + 2, y, z)
    •     else
    •         -- target player is in a vehicle - warp into it if there's space left
    •         if getPedOccupiedVehicle(source) then
    •             --removePlayerFromVehicle(source)
    •             outputChatBox('Get out of your vehicle first.', source)
    •             return
    •         end
    •         local numseats = getVehicleMaxPassengers(vehicle)
    •         for i=0,numseats do
    •             if not getVehicleOccupant(vehicle, i) then
    •                 if isPedDead(source) then
    •                     local x, y, z = getElementPosition(vehicle)
    •                     spawnMe(x + 4, y, z + 1)
    •                 end
    •                 warpPedIntoVehicle(source, vehicle, i)
    •                 return
    •             end
    •         end
    •         outputChatBox('No free seats left in ' .. getPlayerName(targetPlayer) .. 's vehicle.', source, 255, 0, 0)
    •       
    •     end
    •     local interior = getElementInterior(targetPlayer)
    •     setElementInterior(source, interior)
    •     setCameraInterior(source, interior)
    • end
    Just now, Khadeer143 said:
    • Is this correct for disable warp for freeroam and how to add option in f1 panel?  
    •  
    •  
    • function warpStatus(player,cmd)
    •      if player then
    •           if (getElementData(player,"warp.status") == false) then
    •                setElementData(player, "warp.status", true)
    •                outputChatBox("You have enabled your warping", player)
    •           else
    •                setElementData(player, "warp.status", false)
    •                outputChatBox("You have disabled warping", player)
    •           end
    •      end
    • end
    • addCommandHandler("warpstatus", warpStatus)
    •  
    • function warpMe(targetPlayer)
    •     if (getElementData(targetPlayer,"warp.status") == false) then
    •     if isPedDead(source) then
    •         spawnMe()
    •     end
    •  
    •     local vehicle = getPedOccupiedVehicle(targetPlayer)
    •     if not vehicle then
    •         -- target player is not in a vehicle - just warp next to him
    •         local x, y, z = getElementPosition(targetPlayer)
    •         clientCall(source, 'setPlayerPosition', x + 2, y, z)
    •     else
    •         -- target player is in a vehicle - warp into it if there's space left
    •         if getPedOccupiedVehicle(source) then
    •             --removePlayerFromVehicle(source)
    •             outputChatBox('Get out of your vehicle first.', source)
    •             return
    •         end
    •         local numseats = getVehicleMaxPassengers(vehicle)
    •         for i=0,numseats do
    •             if not getVehicleOccupant(vehicle, i) then
    •                 if isPedDead(source) then
    •                     local x, y, z = getElementPosition(vehicle)
    •                     spawnMe(x + 4, y, z + 1)
    •                 end
    •                 warpPedIntoVehicle(source, vehicle, i)
    •                 return
    •             end
    •         end
    •         outputChatBox('No free seats left in ' .. getPlayerName(targetPlayer) .. 's vehicle.', source, 255, 0, 0)
    •       
    •     end
    •     local interior = getElementInterior(targetPlayer)
    •     setElementInterior(source, interior)
    •     setCameraInterior(source, interior)
    • end
    •  
    •  
    •  
    • function warpStatus(player,cmd)
    •      if player then
    •           if (getElementData(player,"warp.status") == false) then
    •                setElementData(player, "warp.status", true)
    •                outputChatBox("You have enabled your warping", player)
    •           else
    •                setElementData(player, "warp.status", false)
    •                outputChatBox("You have disabled warping", player)
    •           end
    •      end
    • end
    • addCommandHandler("warpstatus", warpStatus)
    •  
    • function warpMe(targetPlayer)
    •     if (getElementData(targetPlayer,"warp.status") == false) then
    •     if isPedDead(source) then
    •         spawnMe()
    •     end
    •  
    •     local vehicle = getPedOccupiedVehicle(targetPlayer)
    •     if not vehicle then
    •         -- target player is not in a vehicle - just warp next to him
    •         local x, y, z = getElementPosition(targetPlayer)
    •         clientCall(source, 'setPlayerPosition', x + 2, y, z)
    •     else
    •         -- target player is in a vehicle - warp into it if there's space left
    •         if getPedOccupiedVehicle(source) then
    •             --removePlayerFromVehicle(source)
    •             outputChatBox('Get out of your vehicle first.', source)
    •             return
    •         end
    •         local numseats = getVehicleMaxPassengers(vehicle)
    •         for i=0,numseats do
    •             if not getVehicleOccupant(vehicle, i) then
    •                 if isPedDead(source) then
    •                     local x, y, z = getElementPosition(vehicle)
    •                     spawnMe(x + 4, y, z + 1)
    •                 end
    •                 warpPedIntoVehicle(source, vehicle, i)
    •                 return
    •             end
    •         end
    •         outputChatBox('No free seats left in ' .. getPlayerName(targetPlayer) .. 's vehicle.', source, 255, 0, 0)
    •       
    •     end
    •     local interior = getElementInterior(targetPlayer)
    •     setElementInterior(source, interior)
    •     setCameraInterior(source, interior)
    • end
  4. On 12/29/2013 at 8:49 PM, TAPL said:

    If i understand correctly, this is what you looking for:

    
    -- Client Side -- 
      
    addCommandHandler("kinfe", 
    function() 
        if not kinfeKill then 
            outputChatBox("#00ff0Server: Knife Godmode On!", 0, 255, 0, true) 
        else 
            outputChatBox("#00ff00Server: Knife Godmode Off!", 255, 0, 0, true) 
        end 
        kinfeKill = not kinfeKill 
    end) 
      
    function stopKnifeKill() 
        if kinfeKill then 
            cancelEvent() 
        end 
    end 
    addEventHandler("onClientPlayerStealthKill", localPlayer, stopKnifeKill) 
    
     

     

    It good works but how can i add this mode of disableknife in f1 panel? Can u suggest me

    For example like this- jetpack option in freeroam same likethat disableknife-on or off 

  5. On 10/9/2016 at 7:36 AM, Chris!i! said:

    He means knife and katana.

    
    function onStealthKill(targetPlayer)     cancelEvent(true, "No more stealth kills.") -- Aborts the stealth-kill.endaddEventHandler("onPlayerStealthKill", getRootElement(), onStealthKill) -- Adds a handler for the stealth kill event.

    This cancels knife stab from the back.

    I   

    On 10/9/2016 at 2:47 PM, Chris!i! said:

    no problem ^^

    I also need same thing but i need a option in f1panel with like this for exm

    Jetpack-on or off right same like this

    Disableknife-when player tag disable knife he wont be killed by knife !!I need this ones to be enabled freeroam panel? F1 how to do

  6. Ha bhai im also mapper and hoster !! Mene kuch topic post ke hai deklo bai player to bhaut hai india ke bus apne ko teamwork chaiye ek succesfull indian server banane ke liye:D

    And even pakistani r having more things then india bruh !! See there topics also let we rise bruhsss

  7. Hi bhai salam and namaste

    Ey topic isliye open ke hai !kyu ke sab apne country ke server bana raha hai ha apne india me scripter jada nahi hai but mapper pro hai pure! Muje ek team chaiye jo scripter (beginner) also and mapper also to work with me in server !let we also show them that india is greter then all contry in mta also !! Bai rpy karo or pm karo hosting me karvadunga but muje team work chayiye!

    Fb-khadeermta add karlo [email protected]

  8. I think its no use 

    1 hour ago, Dealman said:

    Can people inside the zone kill people that are outside the zone? If yes, I'd suggest you add a setting for that. :)

    I think its makes more fun p ! Those who r protected can get a god mode but instead they vll comeout also yes there is option for not spawning weapons,vehicles at greenzones u need edit them!give weapon to false and create vehicle to false in lua! But i think we dont need this thing to destroy fun

  9. Its easy as i think p! See u need to make meta,Luna and a song file with mp3 format and merge them in a zip and run them if u didnt get anyidea u can check community there is a resource called joinsound!! Be happy xD

    On 10/10/2016 at 8:33 AM, Gravestone said:

    PlaySound3D would play a 3rd dimensional sounds which means players near the sound position would be able to hear the sound too and if multiple players join then the sounds will get merged, So PlaySound3D is a bad option, use PlaySound and StopSound onPlayerLogin. You'll have to trigger an event client side from server side because you can't check the login from client.

    Yes p playsound3d mostlu use for bases or speakers !! Better try for playsound only !!

    And song file must be mp3

  10. Assalam alikum bhai !

    Yes mere server te mta maze street gang wars before 2014-2015 runned with 300 players daily it stoped now becoz y scripter leaved me thats y my server sucks!

    Par abe ke liye me apne server ke liye khud scripting karraha hu!

    Mere fav server default freeroam p hai jo daily 200+ players khelte hai .free roam mode hai less mb a server ke awesome hai bugs,binds all r good in server try karo

    My ingame name ik amazingcasino

    On 4/12/2015 at 7:54 PM, TheSmart said:

    cup 3 server ajao agar aap hamari help karna chtta ho tuh pm karro mujha.

    Cup to omar ch ka server ta bhai ? 

  11. Assalam alaikum bruh !

    Hello all bai log muje ek help chaye !

    Me f1 panel bana raha hu jisme disable warp,disable knife and disable dethmatch option ke sath enabled ho f1 panel me

    Disable warp-it helps players to other players to not warp to u

    Disable knife-by this other player cant kill u with knife

    Disable deathmatch- help kn to not be killed bu guns,knife etc..

    Help karo koi idea do

    Muje fb me add karo-Khadeer mta or khadeerkhan

    • Like 1
×
×
  • Create New...