[go: up one dir, main page]

wallet-chii

1.0.1 • Public • Published

TrueMoneyWallet - Voucher_Code - NodeJS-Module🚀

ทรูมันนี่วอเลท API รับเงินอัตโนมัติจากซองอั่งเปา🎁

  • API True Money Wallet Red Envelope🧧

  • The System Automatically Receives Money Into Our Number.

  • API ทรูมันนี่วอเลตซองอั่งเปา🧧

  • ระบบเปิดซองอั่งเปารับเงินเข้าเบอร์เราอัตโนมัติ

fdxrdxfr

install modules

  • ติดตั้งโมดูล
npm i wallet-chii

Run Code

  • รันโค้ด Node fileName.js
Node index.js

การใช้งาน API Usage

  • เบอร์โทร กรอกเบอร์รับเงินทรูวอเลทของเรา📲
  • Phone Number: Enter Our True Wallet Money Receiving Number📲
const CHII_API_WALLET = require('wallet-chii')
function TOPUP_Wallet(code) {
      const res = await CHII_API_WALLET(code, 'เบอร์โทร') // เบอร์โทร Number Phone
      console.log(res)
}
TOPUP_Wallet()

รายละเอียดแสดงผล Display Details

  • แสดงชื่อเจ้าของซอง💬
res.name_owner
  • แสดงจำนวนเงินที่ได้รับ💰
res.amount
  • แสดงลิงค์อั่งเปา🔗
res.code
  • แสดงเบอร์เจ้าของซองอั่งงเปา👤
res.my_phone

รวบรวมผลลัพท์แล้วจะได้แบบนี้ Collect Results

console.log(`ได้รับเงินจาก: ${res.name_owner}\nจำนวนเงิน: ${res.amount} บาท\nลิงค์อั่งเปา: ${res.code}`);

การเชื่อมโยงลิงค์ได้ 2 แบบ

  • แบบที่ 1
const Link_VC = "https://gift.truemoney.com/campaign/?v=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
TOPUP_Wallet(Link_VC); 
+ แบบที่ 2
TOPUP_Wallet("https://gift.truemoney.com/campaign/?v=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"); 

โค้ดหมายเลขแจ้งเตือน Notify Number Code


  • 1001 | ทำรายการรับเงินสำเร็จ |


  • 1002 | รับซองตัวเองไม่ได้ |


  • 1003 | ไม่พบเบอร์นี้ในระบบ |


  • 1004 | ไม่พบซองนี้ในระบบ หรือ URL ผิด |


  • 1005 | มีคนรับซองอั่งเปาไปแล้ว |


  • 1006 | ไม่พบซองอั่งเปาในระบบ |


  • 1007 | ซองวอเลทนี้หมดอายุแล้ว |


  • 1008 | เบอร์โทรศัพท์ผู้รับเงินไม่ถูกต้อง |

ตัวอย่างโค้ด Example Code

const CHII_API_WALLET = require('wallet-chii')
const Link_VC = "https://gift.truemoney.com/campaign/?v=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
async function TOPUP_Wallet(code_vc) {
    try {
        const res = await CHII_API_WALLET(code_vc, 'เบอร์รับเงินวอเลท');
        if (res?.ok) {
            switch (res.ok) {
                case 1001:
                    console.log(`ได้รับเงินจาก: ${res.name_owner}\nจำนวนเงิน: ${res.amount} บาท\nลิงค์อั่งเปา: ${res.code}`);
                    break;
                default:
                    console.log('เกิดข้อผิดพลาดที่ไม่รู้จัก');
                    break;
            }
        } else if (res?.errorData) {
            switch (res.errorData) {
                case 1002:
                    console.log(res.mes_err);
                    // console.log('รับซองตัวเองไม่ได้');
                    break;
                case 1003:
                    console.log(res.mes_err);
                     // console.log('ไม่พบเบอร์นี้ในระบบ');
                    break;
                case 1004:
                    console.log(res.mes_err);
                    // console.log('ไม่พบซองนี้ในระบบ หรือ URL ผิด');
                    break;
                case 1005:
                    console.log(res.mes_err);
                   // console.log('มีคนรับซองอั่งเปาไปแล้ว');
                    break;
                case 1006:
                    console.log(res.mes_err); 
                  // console.log('ไม่พบซองอั่งเปาในระบบ');
                    break;
                case 1007:
                    console.log(res.mes_err);
                  // console.log('ซองวอเลทนี้หมดอายุแล้ว');
                    break;
                case 1008:
                    console.log(res.mes_err);
                    // console.log('เบอร์โทรศัพท์ผู้รับเงินไม่ถูกต้อง');
                    break;
                default:
                    console.log('เกิดข้อผิดพลาดที่ไม่รู้จัก');
                    break;
            }
        }
        // ดึงสถานะ res.mes_err มาแจ้งเตือนข้อผิดพลาด หรือ ตั้งชื่อเองได้ ด้วยการลบ res.mes_err ออก
    } catch (error) {
        console.error('Error during TOPUP_Wallet execution:', error.message);
    }
}
TOPUP_Wallet(Link_VC);  
// เชื่อมโยงลิงค์รับเงิน 
// TOPUP_Wallet('กรอกลิงค์ซองอังเปาใส่');

ตัวอย่างโค้ด Embed Discord

const { EmbedBuilder } = require('discord.js');

const CHII_API_WALLET = require('wallet-chii')
const Link = "https://gift.truemoney.com/campaign/?v=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
async function TOPUP_Wallet(code_vc) {
    try {
        const res = await CHII_API_WALLET(code_vc, 'เบอร์รับเงินวอเลท');
        if (res?.ok) {
            switch (res.ok) {
                case 1001:
                    const embeds_res1 = new EmbedBuilder()
                        .setColor(0xFF9933)
                        .setTitle('รับเงินสำเร็จแล้ว\`\`✅\`\`')
                        .setDescription(`ได้รับเงินจาก: ${res.name_owner}\nจำนวนเงิน: ${res.amount} บาท\nลิงค์อั่งเปา: ${res.code}`)
                    interaction.reply({ embeds: [embeds_res1], ephemeral: true });
                    break;
                default:
                    const embeds_error = new EmbedBuilder()
                        .setColor(0xFF0000)
                        .setTitle(`\`\`❌\`\` เกิดข้อผิดพลาดที่ไม่รู้จัก`)
                    interaction.reply({ embeds: [embeds_error], ephemeral: true });
                    break;
            }
        } else if (res?.errorData) {
            switch (res.errorData) {
                case 1002:
                    const embeds_res2 = new EmbedBuilder()
                        .setColor(0xFF0000)
                        .setTitle(`\`\`❌\`\` ${res.mes_err}`)
                    interaction.reply({ embeds: [embeds_res2], ephemeral: true });
                    // console.log(res.mes_err); // รับซองตัวเองไม่ได้ 
                    break;
                case 1003:
                    const embeds_res3 = new EmbedBuilder()
                        .setColor(0xFF0000)
                        .setTitle(`\`\`❌\`\` ${res.mes_err}`)
                    interaction.reply({ embeds: [embeds_res3], ephemeral: true });
                    //  console.log(res.mes_err); // ไม่พบเบอร์นี้ในระบบ
                    break;
                case 1004:
                    const embeds_res4 = new EmbedBuilder()
                        .setColor(0xFF0000)
                        .setTitle(`\`\`❌\`\` ${res.mes_err}`)
                    interaction.reply({ embeds: [embeds_res4], ephemeral: true });
                    //   console.log(res.mes_err); // ไม่พบซองนี้ในระบบ หรือ URL ผิด
                    break;
                case 1005:
                    const embeds_res5 = new EmbedBuilder()
                        .setColor(0xFF0000)
                        .setTitle(`\`\`❌\`\` ${res.mes_err}`)
                    interaction.reply({ embeds: [embeds_res5], ephemeral: true });
                    //  console.log(res.mes_err); // มีคนรับซองอั่งเปาไปแล้ว
                    break;
                case 1006:
                    const embeds_res6 = new EmbedBuilder()
                        .setColor(0xFF0000)
                        .setTitle(`\`\`❌\`\` ${res.mes_err}`)
                    interaction.reply({ embeds: [embeds_res6], ephemeral: true });
                    // console.log(res.mes_err); // ไม่พบซองอั่งเปาในระบบ
                    break;
                case 1007:
                    const embeds_res7 = new EmbedBuilder()
                        .setColor(0xFF0000)
                        .setTitle(`\`\`❌\`\` ${res.mes_err}`)
                    interaction.reply({ embeds: [embeds_res7], ephemeral: true });
                    //  console.log(res.mes_err); // ซองวอเลทนี้หมดอายุแล้ว
                    break;
                case 1008:
                    const embeds_res8 = new EmbedBuilder()
                        .setColor(0xFF0000)
                        .setTitle(`\`\`❌\`\` ${res.mes_err}`)
                    interaction.reply({ embeds: [embeds_res8], ephemeral: true });
                    //   console.log(res.mes_err); // เบอร์โทรศัพท์ผู้รับเงินไม่ถูกต้อง
                    break;
                default:
                    const embeds_error = new EmbedBuilder()
                        .setColor(0xFF0000)
                        .setTitle(`\`\`❌\`\` เกิดข้อผิดพลาดที่ไม่รู้จัก`)
                    interaction.reply({ embeds: [embeds_error], ephemeral: true });
                    break;
            }
        }
        // ดึงสถานะ res.mes_err มาแจ้งเตือนข้อผิดพลาด หรือ ตั้งชื่อเองได้ ด้วยการลบ res.mes_err ออก
    } catch (error) {
        console.error('Error during TOPUP_Wallet execution:', error.message);
    }
}
TOPUP_Wallet(Link);
// เชื่อมโยงลิงค์รับเงิน
// TOPUP_Wallet('กรอกลิงค์ซองอังเปาใส่');

ผู้พัฒนาโค้ด By Developer : CHII แอดมินซี

Package Sidebar

Install

npm i wallet-chii

Weekly Downloads

5

Version

1.0.1

License

MIT

Unpacked Size

20.1 kB

Total Files

4

Last publish

Collaborators

  • apichii123