2 REGISTER_NET_LINKED(ENT_CLIENT_LADDER)
4 void func_ladder_touch(entity this, entity toucher)
7 if (!toucher.iscreature)
9 if(IS_VEHICLE(toucher))
12 if(!toucher.isplayermodel)
16 EXACTTRIGGER_TOUCH(this, toucher);
18 toucher.ladder_time = time + 0.1;
19 toucher.ladder_entity = this;
23 bool func_ladder_send(entity this, entity to, int sf)
25 WriteHeader(MSG_ENTITY, ENT_CLIENT_LADDER);
27 WriteString(MSG_ENTITY, this.classname);
28 WriteByte(MSG_ENTITY, this.skin);
29 WriteCoord(MSG_ENTITY, this.speed);
31 trigger_common_write(this, false);
36 void func_ladder_link(entity this)
38 trigger_link(this, func_ladder_send);
39 //this.model = "null";
42 void func_ladder_init(entity this)
44 settouch(this, func_ladder_touch);
47 func_ladder_link(this);
50 spawnfunc(func_ladder)
52 func_ladder_init(this);
57 func_ladder_init(this);
63 void func_ladder_remove(entity this)
65 if(this.classname) { strunzone(this.classname); }
66 this.classname = string_null;
69 NET_HANDLE(ENT_CLIENT_LADDER, bool isnew)
71 this.classname = strzone(ReadString());
72 this.skin = ReadByte();
73 this.speed = ReadCoord();
75 trigger_common_read(this, false);
77 this.solid = SOLID_TRIGGER;
78 settouch(this, func_ladder_touch);
79 this.drawmask = MASK_NORMAL;
80 this.move_time = time;
81 this.entremove = func_ladder_remove;