You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Jan0660 edited this page Nov 7, 2020
·
2 revisions
Get all ships
varships=Client.GetAllShips();
Get a ship by name
The Client.GetShip method searches for a ship using it's English name, code, id, Japanese and Chinese name, in this order.
varship=Client.GetShip("takao");// or for the real onesvarwaifu=Client.GetWaifu("takao");
You can also search for a ship using only it's id / en,jp,cn,kr name / code
// get ship by idClient.GetShipById("200");// by english,japanese,chinese,korean nameClient.GetShipByEnglishName("takao");Client.GetShipByJapaneseName("高雄");Client.GetShipByChineseName("獒");Client.GetShipByKoreanName("타카오");// by codeClient.GetShipByCode("IJN Takao");