Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gif-sallamadim

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gif-sallamadim

Sallamadim Gif Modulu

  • 0.0.8
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Yenilikler

  • Woman ve Man gif'e daha çok gif eklendi.
  • Random pp/gif eklendi.

    Yapılacaklar

  • Random anime gif eklenecek.
  • Random köpek / kedi foto eklenecek.
  • Random panda foto eklenecek.
  • Random tilki foto eklenecek.

    Dökümentasyon

    const Discord = require('discord.js')
    const client = new Discord.Client()
    const gif = require('gif-sallamadim')
    
    const prefix = "!"
    
    client.on("message", async(message) => {
    	const args = message.content.slice(prefix.length).trim().split(' ');
        
        if(message.content.startsWith(prefix+"mangif")){
            message.channel.send(gif.mangif())
            //Random man gif olarak geri dönüyor.
        }
        if(message.content.startsWith(prefix+"womangif")){
            message.channel.send(gif.womangif())
            //Random woman gif olarak geri dönüyor.
        }
        if(message.content.startsWith(prefix+"random")){
           const secim = args[0]
           if(secim) return;
           if(secim !== "gif" || secim !== "pp") return;
           //Eğer random pp veya gif attırmak istiyorsanız bunu kullanmalısınız.
           const a = gif.random(secim) //Burda ki secim bir opsiyon yani seçenek.
           //Eğer gif veya pp den başka seçim yaparsa hata verecektir.
           //Eğer seçimimiz gif ise, random 1 gif olarak geri döner.
           //Ama eğer seçimimiz pp ise, random 1 pp olarak geri döner.
           message.channel.send(a)
        }
    
    })
    

    Lisans

    MIT

  • Keywords

    FAQs

    Package last updated on 19 Apr 2021

    Did you know?

    Socket

    Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

    Install

    Related posts

    SocketSocket SOC 2 Logo

    Product

    • Package Alerts
    • Integrations
    • Docs
    • Pricing
    • FAQ
    • Roadmap
    • Changelog

    Packages

    npm

    Stay in touch

    Get open source security insights delivered straight into your inbox.


    • Terms
    • Privacy
    • Security

    Made with ⚡️ by Socket Inc