[DiscordArchive] Change Totem Model
[DiscordArchive] Change Totem Model
Archived author: skytia.hizashi • Posted: 2024-11-05T14:24:43.745000+00:00
Original source
sorry, i must have mistyped something... found it
Archived author: Aleist3r • Posted: 2024-11-05T14:24:51.696000+00:00
Original source
no worries ;]
Archived author: skytia.hizashi • Posted: 2024-11-05T14:24:58.670000+00:00
Original source
thanks alot Δleist3r
Archived author: skytia.hizashi • Posted: 2024-11-05T14:25:33.407000+00:00
Original source
btw.. do you guys "just know this" over time or is there some index for stuff like this?
Archived author: Aleist3r • Posted: 2024-11-05T14:26:15.078000+00:00
Original source
in my case i've learned it over time since i was messing with race stuff too
Archived author: skytia.hizashi • Posted: 2024-11-05T14:27:46.387000+00:00
Original source
thanks alot in that case - didn't expect to get help this fast
Archived author: Aleist3r • Posted: 2024-11-05T14:29:07.216000+00:00
Original source
oh i've just seen your message pop in in real time and thought `hey i know answer to this one` so just typed, i suppose it won't happen so fast everytime, depends on who currently sees question
Archived author: skytia.hizashi • Posted: 2024-11-05T14:29:45.990000+00:00
Original source
yeah that was what i actually expected tbh
Archived author: skytia.hizashi • Posted: 2024-11-05T14:30:20.208000+00:00
Original source
btw...
this should work i guess?
case RACE_DRAENEI:
{
switch (totemType)
{
case SUMMON_TYPE_TOTEM_FIRE: // fire
return 19074;
case SUMMON_TYPE_TOTEM_EARTH: // earth
return 19073;
case SUMMON_TYPE_TOTEM_WATER: // water
return 19075;
case SUMMON_TYPE_TOTEM_AIR: // air
return 19071;
}
break;
}
case RACE_HUMAN:
{
switch (totemType)
{
case SUMMON_TYPE_TOTEM_FIRE: // fire
return 19074;
case SUMMON_TYPE_TOTEM_EARTH: // earth
return 19073;
case SUMMON_TYPE_TOTEM_WATER: // water
return 19075;
case SUMMON_TYPE_TOTEM_AIR: // air
return 19071;
}
break;
}
Archived author: skytia.hizashi • Posted: 2024-11-05T14:31:40.415000+00:00
Original source
two races aren't used in the file (RACE_HUMAN and RACE_GNOME) - i think those are variables already set somewhere?