first i want to say that i have spend hours to search this forum.
but i have found a lot of stuff i have apply to my source etc.
first i have made my new halo's and added to:
3DEffect.ini:
Code:
[dm_red] Amount=2 EffectId0=9913 TextureId0=9913 ASB0=5 ADB0=6 EffectId1=9914 TextureId1=9914 ASB1=5 ADB1=6 Delay=0 LoopTime=99999999 FrameInterval=33 LoopInterval=0 OffsetX=0 OffsetY=0 OffsetZ=0 ColorEnable=1
Code:
9913=c3/effect/other/dm_red/2.c3 9914=c3/effect/other/dm_red/8.c3
Code:
9913=c3/effect/other/dm_red/2.dds 9914=c3/effect/other/dm_red/2.dds
Code:
public enum StatusEffectEn : ulong
{
Normal = 0x0,
BlueName = 0x1,
Poisoned = 0x2,
Gone = 0x4,
XPStart = 0x10,
TeamLeader = 0x40,
Accuracy = 0x80,
Shield = 0x100,
Stigma = 0x200,
Dead = 0x420,
Invisible = 0x400000,
RedName = 0x4000,
BlackName = 0x8000,
SuperMan = 0x40000,
Cyclone = 0x800000,
Fly = 0x8000000,
Pray = 0x40000000,
Blessing = 8589934592,
TopGuildLeader = 17179869184,
TopDeputyLeader = 34359738368,
MonthlyPKChampion = 68719476736,
WeeklyPKChampion = 137438953472,
TopWarrior = 274877906944,
TopTrojan = 549755813888,
TopArcher = 1099511627776,
TopWaterTaoist = 2199023255552,
TopFireTaoist = 4398046511104,
TopNinja = 8796093022208,
ShurikenVortex = 70368744177664,
FatalStrike = 140737488355328,
Flashy = 281474976710656,
Ride = 1125899906842624,
[COLOR="Red"]dm_red = 17592186044416,[/COLOR]
[COLOR="red"]dm_blue = 35184372088832,[/COLOR]
[COLOR="red"]dm_black = 70368744177664[/COLOR]
}
Code:
0000000000000000 NULL NULL 0000000000000001 NULL NULL 0000000000000002 poisonstate NULL 0000000000000004 NULL NULL 0000000000000008 NULL NULL 0000000000000010 NULL NULL 0000000000000020 NULL NULL 0000000000000040 NULL TeamLeader 0000000000000080 attackfast40 NULL 0000000000000100 zf2-e307 NULL 0000000000000200 attackup40 NULL 0000000000000400 NULL NULL 0000000000000800 NULL NULL 0000000000004000 NULL NULL 0000000000008000 NULL NULL 0000000000010000 NULL NULL 0000000000020000 Reflect NULL 0000000000040000 SuperSoldier NULL 0000000000080000 BodyShield NULL 0000000000100000 GodBelieve NULL 0000000000200000 NULL NULL 0000000000400000 NULL NULL 0000000000800000 Tornado NULL 0000000001000000 NULL NULL 0000000002000000 ReflectMagic NULL 0000000004000000 Dodge NULL 0000000008000000 NULL NULL 0000000010000000 NULL NULL 0000000040000000 LuckDiffuse NULL 0000000080000000 LuckAbsorb NULL 0000000100000000 curse NULL 0000000200000000 bless NULL 0000000400000000 gamemain NULL 0000000800000000 gameassistant NULL 0000001000000000 gamemonth NULL 0000002000000000 gameweek NULL 0000004000000000 gamefighter NULL 0000008000000000 gamewarrior NULL 0000010000000000 gamebow NULL 0000020000000000 gamewater NULL 0000040000000000 gamefire NULL 0000080000000000 gamegulp NULL [COLOR="Red"]0000100000000000 dm_red NULL[/COLOR] [COLOR="red"]0000200000000000 dm_blue NULL[/COLOR] [COLOR="red"]0000400000000000 dm_black NULL[/COLOR] 800000000000 endureXPstate NULL 400000000000 cyclonehandcycle NULL 1000000000000 PKchampion NULL
Code:
if (Cmd[0] == "/dm_red")
{
Game.Character C = Game.World.CharacterFromName(Cmd[1]);
if (C != null)
C.StatEff.Add(NewestCOServer.Game.StatusEffectEn.dm_red);
}
if i copy my halo dss file into an exist TOP halo, for ex. TopArcher i see my edited dss so that is good.
i think i need to add my new files olso the the WDF files, but i don't know for sure.
can someone help me please?
Greets,
ZeRo






