Ok, i've written a cog which should stop the player from taking falling damage from anything without editing kyle.cog(because you cant flag 3do's as no impact damage and i cant edit kyle.cog because it would effect all the other levels in the pack). The problem is, that it worked in SP but not in MP, so i wrote a c/s cog to do it, but that doesnt work, could someone tell me what i'm doing wrong?
Server side cog:
Client side cog:
------------------
Generating Electro Vibes™ for the masses on Massassi
Go To: EL3CTROPROSE or DEEPMATRIX or L3CY's Topsites
Boba Jules: You ever read the bible TK-421?
TK-421: No?
Boba Jules: Oh, ok...
*BLAM BLAM BLAM BLAM*
<EL3CTRO> EXCAUSE ME MISTAR CAERV BUT I LIEK MY PHORUMPHS!
[This message has been edited by Electro (edited October 31, 2001).]
Server side cog:
Code:
# Jedi Knight Cog Script # # server_nofalldamage.cog # # This cog will prevent the player from taking falling damage without editing # kyle.cog (Server side). # # [E3 - 31/10/2001] # # symbols thing player message damaged end # ======================================================================================== code damaged: player = GetLocalPlayerThing(); SendTrigger(-1, 18881, 0, 0, 0, 0); Return; # ........................................................................................ end
Client side cog:
Code:
# Jedi Knight Cog Script # # client_nofalldamage.cog # # This cog will prevent the player from taking falling damage without editing # kyle.cog (Client side). # # [E3 - 31/10/2001] # # symbols thing player message trigger end # ======================================================================================== code trigger: If(GetSourceRef()==18881) { player = GetLocalPlayerThing(); if(GetSenderRef() != player) Return; if(GetParam(1) == 0x1) ReturnEx(0); } Return; # ........................................................................................ end
------------------
Generating Electro Vibes™ for the masses on Massassi
Go To: EL3CTROPROSE or DEEPMATRIX or L3CY's Topsites
Boba Jules: You ever read the bible TK-421?
TK-421: No?
Boba Jules: Oh, ok...
*BLAM BLAM BLAM BLAM*
<EL3CTRO> EXCAUSE ME MISTAR CAERV BUT I LIEK MY PHORUMPHS!
[This message has been edited by Electro (edited October 31, 2001).]
Generating Electro Vibes™ for the masses on Massassi
Go To: BiTsToRm Forums or L3CY's Topsites
Boba Jules: You ever read the bible TK-421?
TK-421: No?
Boba Jules: Oh, ok...
*BLAM BLAM BLAM BLAM*
<EL3CTRO> EXCAUSE ME MISTAR CAERV BUT I LIEK MY PHORUMPHS!
Go To: BiTsToRm Forums or L3CY's Topsites
Boba Jules: You ever read the bible TK-421?
TK-421: No?
Boba Jules: Oh, ok...
*BLAM BLAM BLAM BLAM*
<EL3CTRO> EXCAUSE ME MISTAR CAERV BUT I LIEK MY PHORUMPHS!