Friendly guy, fast communication! Recommended.
Beiträge von Baltazar
-
-
-
Kaufe ein entbuggtes Skill Color System!
-
-
Hello, I have problem with adding bonuses to costume weapon. I am trying to add item, which will set 3 bonuses to costume weapon. Costume body and hair are working fine.
This is the problem: Bitte melden Sie sich an, um diesen Link zu sehen.
Code:
else if(item->GetVnum() == 70070)
{
if (item2->GetAttributeCount() != 0)
{
ChatPacket(CHAT_TYPE_INFO, "Bonuses are already in this item.");
return false;
}
else
{
if (number(1, 100) <= 25) //Chance to add bonuses
{
if (item2->GetType() == ITEM_COSTUME && item2->GetSubType() == COSTUME_WEAPON_SWORD && item->GetVnum() == 70070)
{
item2->SetForceAttribute(0, 1, 2000);
item2->SetForceAttribute(1, 63, 10);
item2->SetForceAttribute(2, 43, 10);
}
}
}
item->SetCount(item->GetCount() - 1);
return true;
}
Thanks for any advice.
Best Regards,
Baltazar
-
-
Hi, I can help you to set up your world editor if you want, just send me pm.
-
All textures are in chinesedragon_mount which I uploaded to attachments
-
Hello community, I was able to solve problem with alpha channel map in 3dsmax, but there is still some color around texture and I dont really know why. I tried to make alpha channel bigger, smaller nothing of this helped.
This is picture of mount before: Bitte melden Sie sich an, um diesen Link zu sehen.
This is picture of mount after adding alpha channel map: Bitte melden Sie sich an, um diesen Link zu sehen.
In attachments I added textures of mount, it may help you to understand it.
Thanks for any help.
Best Regards,
Baltazar -
SOLVED
-
Helo community, I have kinda weird bug with this mount. I can't move, but also when I press W or S mount is moving to sides not forward or back. Mount is ripped from different game. I have no problem to share this mount with you guys after problem will be solved. Thank you so much for any kind of help!
Here is a gif which is showing my problem:Bitte melden Sie sich an, um diesen Link zu sehen.
Best regards,
Baltazar -
Hello! I tried to add 3th ring into inventory. I did everything same
like 1st and 2nd ring slot, but now my server is not able to start db.
This is what is in syslog: CLIENT_DESC [db_clientdesc] trying DBPacket() while not connectedI really don't know what is wrong, every part of code is same as code
for item_ring.. This error is showing after adding item_ring3 into
protoreader.cpp in db source. Is there any limit for item type? Thanks
for every answer!
Have a nice day -
Hello! Can someone tell me how to add effect on costume weapon? I am trying to solve it somehow, but effect still doesn't appear. Thanks for answers!