1 Attachment(s)
[RELEASE] Mia gives free hair/color/eye/color/skin/color (Male & Female)
Also besure if you change the npc ID you have to change the npc ID in the Custom.cpp file to the npc ID you use if you dont wanna use Mia.
This is my release not that great so dont bash im trying to contribute even if there are other like this already posted.
You can also change the npc name if you dont want to use Mia in Henesys to do the changes this comes with female and male changes
Add the Custom.cpp to your NPC's in C++ and also add this to the
NPCsScripts.h
Code:
case 9010002: npc_9010002(npc); break; //NX NPC
change 9010002 to whatever npc ID you wanna use if you dont wanna use Mia,
Add
Code:
static void npc_9010002(NPC* npc); // NX NPC
to NPCsScripts.h aswell besure to change 9010002 to whatever npc you wanna use it has to be the same npc id as the one for the case
This is for Mia in henesys is what I use accounts might get bugged if users try to use female hair or eyes same with girls if they use male eyes or male hair
just go into your mysql if this happens and change there hair aslo the skin can some times get bugged to so needs work.
I think I posted all i need if not reply i'll try to help.
Re: [RELEASE] Mia gives free hair/color/eye/color/skin/color (Male & Female)
Re: [RELEASE] Mia gives free hair/color/eye/color/skin/color (Male & Female)
wow ty =) much work for u GJ
Re: [RELEASE] Mia gives free hair/color/eye/color/skin/color (Male & Female)
Re: [RELEASE] Mia gives free hair/color/eye/color/skin/color (Male & Female)
Its not much but atleast im trying to give to the devlopment here I run my own server so i really dont have time to do much on this forum but look for releases others have made i think might be cool to have in my server so to return the leeching favor i made this even if if it has been released before.
Re: [RELEASE] Mia gives free hair/color/eye/color/skin/color (Male & Female)
thanks for the release :]
Re: [RELEASE] Mia gives free hair/color/eye/color/skin/color (Male & Female)
Has been already release...
And the other version doesn't bug the characters. :sq_yellow
Re: [RELEASE] Mia gives free hair/color/eye/color/skin/color (Male & Female)
It would be safer if its gender detected.
Re: [RELEASE] Mia gives free hair/color/eye/color/skin/color (Male & Female)
This for example:
Code:
if(player->getGender() == 0){
npc->teleport(801000100);
npc->end();
}
else{
npc->teleport(801000200);
npc->end();
If your not male you instantly get teleported to female spa.
Re: [RELEASE] Mia gives free hair/color/eye/color/skin/color (Male & Female)
What exactly did you change here other than taking the gm map npcs' existing coding and putting it under the mia id?
Anything new added?
Re: [RELEASE] Mia gives free hair/color/eye/color/skin/color (Male & Female)
Quote:
Originally Posted by
jwshan
What exactly did you changed here other than taking the gm map npcs' existing coding and putting it under the mia id?
Anything new added?
I think it's for normal players that cant access the gmmap.
Re: [RELEASE] Mia gives free hair/color/eye/color/skin/color (Male & Female)
Quote:
Originally Posted by
xnBlaze
This for example:
Code:
if(player->getGender() == 0){
npc->teleport(801000100);
npc->end();
}
else{
npc->teleport(801000200);
npc->end();
If your not male you instantly get teleported to female spa.
Agree with this idea.
Re: [RELEASE] Mia gives free hair/color/eye/color/skin/color (Male & Female)
thanks you ssoo much =))))
Re: [RELEASE] Mia gives free hair/color/eye/color/skin/color (Male & Female)
I am new to this, can you tell me how can u add the custom.cpp to NPCs and NPCsScripts.h ?
Re: [RELEASE] Mia gives free hair/color/eye/color/skin/color (Male & Female)