private void characterscallback(gamestate client, int time)
#region effect if (client.entity.mapid == 1002) { if (kernel.getdistance(client.entity.x, client.entity.y, 312, 279) < 17 && !client.effect) { client.effect = true; if (client.entity.mapid == 1002) { network.gamepackets.flooritem flooritem = new network.gamepackets.flooritem(true); flooritem.itemid = 1024; flooritem.mapid = 1002; flooritem.x = 312; flooritem.y = 279; flooritem.type = network.gamepackets.flooritem.effect; client.send(flooritem); } } else { if (kernel.getdistance(client.entity.x, client.entity.y, 312, 279) > 17) { client.effect = false; } } } #endregion
flooritem.itemid = 1024;