whats the body change code..(5165)

12/06/2009 11:57 rocka7x#1
anyone know the body change code.. for a useable item?

or.. wouldnt mind codeing the item for me?..
"ninja amulet"..
12/06/2009 12:46 ~*NewDuuDe*~#2
Hm... Do something like this; (This is LOTF, but you can probably find the variable yourself, as I have not yet looked into the 5165 source.
Code:
if (MyChr.Model == bigmaleID)
MyChr.Model -= 1;
if (MyChr.Model == bigfemaleID)
MyChr.Model -= 1;
RemoveItem(ItemUID);
That should work, just find the model IDs. This would make it smaller(I think).
12/06/2009 12:51 rocka7x#3
thanks, kai checked.. didnt work thanks anyways couldnt find the Ids either :/
12/06/2009 12:55 ~*NewDuuDe*~#4
Thanks button is there for a reason :P
12/06/2009 20:36 osamaazez#5
oh its work realy great thanks
12/07/2009 02:59 .Guru#6
Quote:
Originally Posted by BERGHUIS1 View Post
Hm... Do something like this; (This is LOTF, but you can probably find the variable yourself, as I have not yet looked into the 5165 source.
Code:
if (MyChr.Model == bigmaleID)
MyChar.Model -= 1;
if (MyChr.Model == bigfemaleID)
MyChr.Model -= 1;
RemoveItem(ItemUID);
That should work, just find the model IDs. This would make it smaller(I think).
and for making them bigger (as in vice versa) it would simply be. (using same syntax he did)

Code:
if (MyChr.Model == smallmaleID)
MyChar.Model += 1;
if (MyChr.Model == smallfemaleID)
MyChr.Model += 1;
RemoveItem(ItemUID);
12/07/2009 18:57 ~*NewDuuDe*~#7
Quote:
Originally Posted by rocka7x View Post
thanks, kai checked.. didnt work thanks anyways couldnt find the Ids either :/
If you can't find the ID, you could look at the /model command that is in many LOTF sources, and look at whatever the models are named, and use that.
12/07/2009 20:28 rocka7x#8
yeh i thought that.. problem though.. it cant find /model..or /look either.. and thats part of the commands.. but not in the source files
12/07/2009 20:59 ~*NewDuuDe*~#9
I said for LOTF. Search here on E*pvp is also something you can do.
12/08/2009 00:00 rocka7x#10
hm yeh..but still shouldnt the /look command be in the source file at all.. unless its a client command.. i dunno ill have another search around

ignore that.. i found it.. forgot to look into marriage file.. and its

set out like that.. just trying to figure out how to make it change you.. since its only doing it once even ill sort that out soon..

thanks for helping

if (Body == 2003)
Body -= 1;
if (Body == 2004)
Body -= 1;
RemoveItem(I);
12/08/2009 05:22 hunterman01#11
Check the reborn npc

when he asks you your body size ;)
12/08/2009 21:24 rocka7x#12
Quote:
Originally Posted by hunterman01 View Post
Check the reborn npc

when he asks you your body size ;)
yeh.. thats the only thing.. lol the rb npcs i'v got doesnt change your body size >< main reason i need to find out how to change it so i can add change body size on them.. and the other body changeing npc
12/21/2009 18:33 miketheking#13
i released da code and wer to put besides that pk amulet code on 4 botters
12/21/2009 20:15 .Guru#14
if you look in my multi-rel thread.. there is ninja amulet release, that contains the code you can put inside character.cs in the item void. or you can code your own command with the ninja amulet code.
12/25/2009 20:55 Olodady#15
lol i cant find it in the source D: