Player announcer when they logon menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 16
  1. #1
    vb4evr's Avatar Member
    Reputation
    22
    Join Date
    Oct 2007
    Posts
    113
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Player announcer when they logon

    Is there a way of announcing when a player logs onto the server.
    I have just a tiny server comprised mostly of friends and it would be nice to have the server announce when the logon.

    Thanks in advance for any help.

    Player announcer when they logon
  2. #2
    Tom_2001's Avatar Member
    Reputation
    177
    Join Date
    Oct 2007
    Posts
    609
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You edit something in your ascent database. when you log in it says something like Welcome to ascent 2775 or something like this

    well you can edit it usally in the Ascent.config or using navicat or a database hangler.

  3. #3
    vb4evr's Avatar Member
    Reputation
    22
    Join Date
    Oct 2007
    Posts
    113
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks for the prompt response Tom_2001 but I think you misunderstood what I was looking for.
    I'm not looking for something that announces to you, but would announce when player 'x' logs onto the server it announces to players 'y' 'z' that player 'x' has logged on to the server.

  4. #4
    Tom_2001's Avatar Member
    Reputation
    177
    Join Date
    Oct 2007
    Posts
    609
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Im not sure that is possible... maybe if they add you to friends list :P or you hire a gamemaster to just .ann when someone logs in :P

  5. #5
    Gastricpenguin's Avatar Legendary
    Reputation
    980
    Join Date
    Feb 2007
    Posts
    2,236
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    void PLRCheck (Player *Plr)
    {
    if(Plr->GetSession()->CanUseCommand('a'))
    {
    char display_str[255];
    sprintf(display_str, "[NOTICE] <GM>|cffCC0000&#37;s|r has logged in!", Plr->GetName());
    sWorld.SendWorldText(display_str);
    delete display_str;
    }else{
    char display_str[255];
    sprintf(display_str, "[NOTICE] %s has logged in!", Plr->GetName());
    sWorld.SendWorldText(display_str);
    delete display_str;
    }
    }

    extern "C" SCRIPT_DECL void _exp_script_register(ScriptMgr* mgr)
    {
    mgr->register_hook(SERVER_HOOK_EVENT_ON_ENTER_WORLD, &PLRCheck);
    }
    Last edited by Gastricpenguin; 02-05-2008 at 12:32 PM.
    Life Puzzler WoW - Website | Forums

  6. #6
    Gastricpenguin's Avatar Legendary
    Reputation
    980
    Join Date
    Feb 2007
    Posts
    2,236
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The script got messed hold on
    Last edited by Gastricpenguin; 02-05-2008 at 12:32 PM.
    Life Puzzler WoW - Website | Forums

  7. #7
    [Shon3m]'s Avatar Banned
    Reputation
    128
    Join Date
    Apr 2007
    Posts
    669
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Motd = "No MOTD specified." Look For It in Your Config....

  8. #8
    Gastricpenguin's Avatar Legendary
    Reputation
    980
    Join Date
    Feb 2007
    Posts
    2,236
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    No, he wants this to happen:
    When a player (lets say Taurenlol) enters the world, he wants a message displayed that says:
    "Taurenlol has just logged in!"

    Motd cant do that.
    Life Puzzler WoW - Website | Forums

  9. #9
    Tom_2001's Avatar Member
    Reputation
    177
    Join Date
    Oct 2007
    Posts
    609
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Gastric when will your Epicness end :P

  10. #10
    [Shon3m]'s Avatar Banned
    Reputation
    128
    Join Date
    Apr 2007
    Posts
    669
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Oh.......lol thats cool Say Name Welcome That'd Be Cool If u need help with complie it let me know

  11. #11
    King Shaun's Avatar Member
    Reputation
    419
    Join Date
    Dec 2007
    Posts
    1,305
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hehe, yes. Gastric is correct.


    Threads of the Week: [Errage] [Blizzard] [Rapidshare]

  12. #12
    Gastricpenguin's Avatar Legendary
    Reputation
    980
    Join Date
    Feb 2007
    Posts
    2,236
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Im going to go ahead and compile it.
    Life Puzzler WoW - Website | Forums

  13. #13
    Gastricpenguin's Avatar Legendary
    Reputation
    980
    Join Date
    Feb 2007
    Posts
    2,236
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Aight well heres the DLL, and the source:
    http://filebin.ca/goeau/PlrLogin.rar

    Have fun, and post any errors
    Life Puzzler WoW - Website | Forums

  14. #14
    vb4evr's Avatar Member
    Reputation
    22
    Join Date
    Oct 2007
    Posts
    113
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Fantastic...
    Thank you so much Gastric. Needed to compile myself but it loaded properly just testing out now. +Rep

  15. #15
    vb4evr's Avatar Member
    Reputation
    22
    Join Date
    Oct 2007
    Posts
    113
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hmm, just tested it out and it doesn't appear to do anything. Loading the server works just fine with the dll loading, but when I or anyone logs on it does not announce. Probably something I did.

    When I try to load the dll you provided Gastric I get an error that the dll will not load. Get an error that "This application has failed to start because ascent-world.exe was not found."

    I compiled up a test server on rev 3648 and get no popup errors on server load but do get this error in the dll load "version functions not found". (looking back I got this error on my compile too on my live server on rev 3499)
    Last edited by vb4evr; 02-05-2008 at 12:50 PM.

Page 1 of 2 12 LastLast

Similar Threads

  1. Players getting loopback when they try to connect to server
    By ghcghcghc in forum WoW EMU Questions & Requests
    Replies: 6
    Last Post: 03-29-2009, 08:08 PM
  2. Replies: 8
    Last Post: 12-05-2008, 03:24 AM
  3. [Griefing] Kill everyone in your premade when they leave BG.
    By Raika in forum World of Warcraft Exploits
    Replies: 53
    Last Post: 09-13-2008, 05:31 AM
  4. When they die, they come to IF Spirit healer?
    By INS4N3K1LL in forum World of Warcraft Emulator Servers
    Replies: 4
    Last Post: 05-15-2008, 04:01 PM
All times are GMT -5. The time now is 11:37 PM. 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