Player Talent Points? menu

User Tag List

Results 1 to 14 of 14
  1. #1
    EmuX's Avatar Active Member
    Reputation
    29
    Join Date
    Feb 2008
    Posts
    172
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Player Talent Points?

    On my server I made it so players start at level 19 and 60. But they have 0 talent points. Anyone know how to to change the amount of talent points you start off with?

    Player Talent Points?
  2. #2
    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)
    Thats in the core... You'd have to recompile Ascent. I think it was in Player.cpp

  3. #3
    EmuX's Avatar Active Member
    Reputation
    29
    Join Date
    Feb 2008
    Posts
    172
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Alright ill check that thanks.

  4. #4
    komothoes's Avatar Member
    Reputation
    5
    Join Date
    Feb 2008
    Posts
    94
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    what i would say is that you make all the players start at 9 and when they make lev 10 thats when the points start anyways so when they get there they will start the points

  5. #5
    EmuX's Avatar Active Member
    Reputation
    29
    Join Date
    Feb 2008
    Posts
    172
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Well I know it's possible...so I just need to find out how. Tuns of servers out there that start at level 70.

  6. #6
    EmuX's Avatar Active Member
    Reputation
    29
    Join Date
    Feb 2008
    Posts
    172
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Really need to figure this out...anyone that knows how to do this?

  7. #7
    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)
    I suggest looking in either Level0 through Level3.cpp and searching for the
    .modify talentpoints coding, then look for the results in player.cpp
    Life Puzzler WoW - Website | Forums

  8. #8
    EmuX's Avatar Active Member
    Reputation
    29
    Join Date
    Feb 2008
    Posts
    172
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Could someone please help me with this? Really need to get this done. thanks.

  9. #9
    latruwski's Avatar Banned
    Reputation
    647
    Join Date
    Dec 2006
    Posts
    2,456
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    what about talentreset? did you try that? when players are instant lvl xx and you reset talents maybe they will have the normal amount of talents again...

    (you can make a script for this)

    grtz

  10. #10
    doublehex's Avatar Member
    Reputation
    34
    Join Date
    Mar 2007
    Posts
    385
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    you could do it with a dll , ill see if i can make the sources for you, but i cant compile it.


  11. #11
    doublehex's Avatar Member
    Reputation
    34
    Join Date
    Mar 2007
    Posts
    385
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ok sorry for double post, heres what i got, i aint sure if it would work, it compiled fine but someone needs to test:
    talent.cpp(edit the red depending on how many talents you want to give them)
    Code:
    /* Written By Doublehex
       Feel free to edit as you like*/
    
    #include "StdAfx.h"
    #include "Setup.h"
    
    void Talent (Player *plr){
                            plr->SetUInt32Value(PLAYER_CHARACTER_POINTS1,9);
    }
    
    void SetupTalent(ScriptMgr* mgr){
      mgr->register_hook(SERVER_HOOK_EVENT_ON_CHARACTER_CREATE, &Talent);
    }
    setup.cpp
    Code:
    #include "StdAfx.h"
    #include "Setup.h"
    #include <ScriptSetup.h>
    
    extern "C" SCRIPT_DECL uint32 _exp_get_script_type()
    {
        return SCRIPT_TYPE_MISC;
    }
    
    extern "C" SCRIPT_DECL void _exp_script_register(ScriptMgr* mgr)    // Comment any script to disable it
    {
        SetupTalent(mgr);
    
    }
    
    #ifdef WIN32
    
    BOOL APIENTRY DllMain( HANDLE hModule, DWORD  ul_reason_for_call, LPVOID lpReserved )
    {
        return TRUE;
    }
    
    #endif
    setup.h
    Code:
    void SetupTalent(ScriptMgr * mgr);


  12. #12
    EmuX's Avatar Active Member
    Reputation
    29
    Join Date
    Feb 2008
    Posts
    172
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Err, good work..but where do I put it lol?

  13. #13
    doublehex's Avatar Member
    Reputation
    34
    Join Date
    Mar 2007
    Posts
    385
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    lol its sources for a dll, you gotta compile it, im assuming you have a 3.9+ source which i dont have so i cant compile it for you, try getting someone else to compile


  14. #14
    WiKKiD's Avatar Member
    Reputation
    6
    Join Date
    Jan 2008
    Posts
    58
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Another option is to just have a quest npc to give the exp at starter areas. have the quest give enough exp for them to level to 19, or 60.

    This'll give em all the talent points.

    Not exactly what you're looking for, but it works!

Similar Threads

  1. How DO I CHANGE HOW MANY TALENT POINTS PLAYERS GET EACH TIME THEZY LEVEL?
    By BillyBob31 in forum World of Warcraft Emulator Servers
    Replies: 15
    Last Post: 03-10-2008, 11:46 AM
  2. Talent Point "Joke"
    By Ukrainia in forum World of Warcraft General
    Replies: 7
    Last Post: 12-31-2007, 05:45 AM
  3. extra talent points?
    By SuperNinjaBob in forum World of Warcraft General
    Replies: 1
    Last Post: 05-31-2007, 06:04 PM
  4. Get your talent-points back for free!
    By needmorerep in forum World of Warcraft Exploits
    Replies: 13
    Last Post: 09-25-2006, 12:55 PM
  5. Hit points and talent points? Please help
    By hankusdankus in forum World of Warcraft General
    Replies: 6
    Last Post: 05-04-2006, 02:00 PM
All times are GMT -5. The time now is 06:58 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