• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Outfits

Kedor

New Member
Joined
Mar 3, 2008
Messages
263
Reaction score
0
Location
Poland, Gdynia
how can i add addons.. i mean the numbers like
doPlayerAddOutfit(cid, 128, 1)
doPlayerAddOutfit(cid, 136, 1)


which are for first citizen addon

but i want that to jester, nightmare, Brotherhood

any1 know?
 
Female first:
Code:
doPlayerAddOutfit(cid, 269, 1) -- nightmare
doPlayerAddOutfit(cid, 270, 1) -- jester
doPlayerAddOutfit(cid, 279, 1) -- brotherhood

Female second:
Code:
doPlayerAddOutfit(cid, 269, 2) -- nightmare
doPlayerAddOutfit(cid, 270, 2) -- jester
doPlayerAddOutfit(cid, 279, 2) -- brotherhood

Male first:
Code:
doPlayerAddOutfit(cid, 268, 1) -- nightmare
doPlayerAddOutfit(cid, 273, 1) -- jester
doPlayerAddOutfit(cid, 278, 1) -- brotherhood

Male second:
Code:
doPlayerAddOutfit(cid, 268, 2) -- nightmare
doPlayerAddOutfit(cid, 273, 2) -- jester
doPlayerAddOutfit(cid, 278, 2) -- brotherhood
 
Back
Top