mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-31 17:26:30 +00:00
Final prep for extending skill use range - client patch and database are ready..just need the code in-between
This commit is contained in:
@@ -270,20 +270,7 @@ ENCODE(OP_PlayerProfile) {
|
||||
OUT(silver_cursor);
|
||||
OUT(copper_cursor);
|
||||
|
||||
//OUT_array(skills, structs::MAX_PP_SKILL); // 1:1 direct copy (100 dword)
|
||||
OUT_array(skills, MAX_PP_SKILL); // copy first 75 from server struct
|
||||
for(r = MAX_PP_SKILL; r < structs::MAX_PP_SKILL; r++) { eq->skills[r] = (uint32)0; } // zero the rest
|
||||
|
||||
/*
|
||||
// SKILLS TEST
|
||||
eq->skills[75] = (uint32)5; // SkillRemoveTrap
|
||||
eq->skills[76] = (uint32)10; // SkillTripleAttack
|
||||
eq->skills[77] = (uint32)15; // Skill2HPiercing
|
||||
eq->skills[78] = (uint32)20; // SkillNone
|
||||
|
||||
for(r = MAX_PP_SKILL + 4; r < structs::MAX_PP_SKILL; r++) { eq->skills[r] = (uint32)0; }
|
||||
// END TEST
|
||||
*/
|
||||
OUT_array(skills, structs::MAX_PP_SKILL); // 1:1 direct copy (100 dword)
|
||||
|
||||
// OUT(unknown04760[236]);
|
||||
OUT(toxicity);
|
||||
|
||||
Reference in New Issue
Block a user