VIP accounts menu

User Tag List

Thread: VIP accounts

Results 1 to 11 of 11
  1. #1
    Le Froid's Avatar Contributor
    Reputation
    172
    Join Date
    Mar 2007
    Posts
    1,327
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    VIP accounts

    All credit goes to Mesmer of ascentemu for this


    Execute this .sql to your account table
    Code:
    alter table accounts add column `vip` INTEGER(11) not null default 0;

    If the vip column is 0 they get nothing if 1 they get the item.


    Then compile this
    Code:
    /***********************************************************
    VIP account Addon
    --- Basic Addon Add-er
    by: Mesmer
    License: Attribution-NonCommercial-ShareAlike 3.0 United States
    - Creative Commons Attribution-Noncommercial-Share Alike 3.0 United States
    Script Version: 0.0.1
    ****************************************************/
    #include "Setup.h"
    #include "StdAfx.h"
    
    #define VIP_ITEM_ID 10000 // change this item accordingly for the item that needs to be added
    
    void VIPCheck (Player *plr)
    {
        static unsigned acct = NULL;
        static unsigned vip = NULL;
        static QueryResult *getVip = NULL;
        static QueryResult *getAcct = NULL;
        getAcct = CharacterDatabase.Query("SELECT `acct` FROM `characters` WHERE `guid` = '%i'", plr->GetGUIDLow());
        acct = getAcct->Fetch()[0].GetUInt32();
        getVip = CharacterDatabase.Query("SELECT `vip` FROM `accounts` WHERE `acct` = '%i'", acct);
        vip = getVip->Fetch()[0].GetUInt32();
        if (vip == 1){
            Item *item;
            item = objmgr.CreateItem( VIP_ITEM_ID, plr);
            if(!plr->GetItemInterface()->AddItemToFreeSlot(item)){delete item;}
        }
    }
    
    extern "C" SCRIPT_DECL void _exp_script_register(ScriptMgr* mgr)
    {
        mgr->register_hook(SERVER_HOOK_EVENT_ON_CHARACTER_CREATE, &VIPCheck);
    }
    OR download it from http://www.wowdelight.com/filehost/VIP.rar ( from ritualist)

    the item ID they get is
    10000

    Place it in the script_bin

    When the VIP player logs in they will recieve an extra item in their inventory
    Last edited by Le Froid; 12-26-2007 at 09:48 AM.

    VIP accounts
  2. #2
    L'Lawliet's Avatar Contributor
    Reputation
    212
    Join Date
    Jun 2007
    Posts
    1,765
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    what is the item?

  3. #3
    Le Froid's Avatar Contributor
    Reputation
    172
    Join Date
    Mar 2007
    Posts
    1,327
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Halo View Post
    what is the item?
    Anything you want it to be. The ID is 10000

  4. #4
    L'Lawliet's Avatar Contributor
    Reputation
    212
    Join Date
    Jun 2007
    Posts
    1,765
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    cool ty +rep..... hey you klnow any way to fix a scratched halo 3 disk?

  5. #5
    EcHoEs's Avatar lol why u mad
    Reputation
    374
    Join Date
    Sep 2006
    Posts
    1,646
    Thanks G/R
    3/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just a idea : You can also add more items, by entering another
    Code:
    #define VIP_ITEM_ID #number


  6. #6
    Cursed's Avatar Contributor
    Reputation
    270
    Join Date
    Jun 2007
    Posts
    1,380
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just change the id in the text you want to compile to your item ID ( its the #define VIP_ITEM_ID 10000 // change this item accordingly for the item that needs to be added thing)

  7. #7
    Le Froid's Avatar Contributor
    Reputation
    172
    Join Date
    Mar 2007
    Posts
    1,327
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Halo View Post
    cool ty +rep..... hey you know any way to fix a scratched halo 3 disk?
    disc cleaner?

  8. #8
    L'Lawliet's Avatar Contributor
    Reputation
    212
    Join Date
    Jun 2007
    Posts
    1,765
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    you sure those work? it was made by the machine and its a circle

  9. #9
    Le Froid's Avatar Contributor
    Reputation
    172
    Join Date
    Mar 2007
    Posts
    1,327
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Halo View Post
    you sure those work? it was made by the machine and its a circle

    I've used one on a foo fighters CD and it worked.
    Never tried on a game but same thing.

    Depends on how scratched it is.

  10. #10
    EcHoEs's Avatar lol why u mad
    Reputation
    374
    Join Date
    Sep 2006
    Posts
    1,646
    Thanks G/R
    3/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Omgz get back on topic.
    Back on topic! :
    Ummh.. I didn't download this.


  11. #11
    Le Froid's Avatar Contributor
    Reputation
    172
    Join Date
    Mar 2007
    Posts
    1,327
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Emeriss84 View Post
    Omgz get back on topic.
    Back on topic! :
    Ummh.. I didn't download this.

    lol
    (filler)

Similar Threads

  1. [Selling] Arena-Tournament VIP account
    By xxsweghostxx in forum World of Warcraft Buy Sell Trade
    Replies: 4
    Last Post: 01-22-2012, 10:50 AM
  2. [Trading] Black Ops steam account + Abyssal WoW VIP account
    By Aerosage in forum General MMO Buy Sell Trade
    Replies: 3
    Last Post: 05-17-2011, 05:44 PM
  3. [Selling] [Paypal] eternion-wow vip account
    By mfraschilla in forum World of Warcraft Buy Sell Trade
    Replies: 0
    Last Post: 04-04-2011, 08:42 PM
  4. [Trading] Black ops steam account / Abyssal WoW VIP account for an EU gamecard
    By Aerosage in forum General Trading Buy Sell Trade
    Replies: 0
    Last Post: 02-12-2011, 05:25 AM
  5. [HELP]Custom Vip Account o_0?
    By Naturaldepth in forum World of Warcraft Emulator Servers
    Replies: 6
    Last Post: 07-04-2008, 03:06 AM
All times are GMT -5. The time now is 01:49 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search