X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fbot%2Fapi.qh;h=5d74a98a1e8315a222fdbcd9eb8d67a4466225fe;hb=3df1d2edb58f2044cd0b077f0f15055540280164;hp=0cddd3b27a01df165978105a753016033b7b5c1c;hpb=ada305719835791c8f4d72c822f5cbecd4f8609c;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/bot/api.qh b/qcsrc/server/bot/api.qh index 0cddd3b27..5d74a98a1 100644 --- a/qcsrc/server/bot/api.qh +++ b/qcsrc/server/bot/api.qh @@ -13,6 +13,8 @@ const int WAYPOINTFLAG_PROTECTED = BIT(18); // Useless WP detection never kills const int WAYPOINTFLAG_USEFUL = BIT(17); // Useless WP detection temporary flag. const int WAYPOINTFLAG_DEAD_END = BIT(16); // Useless WP detection temporary flag. const int WAYPOINTFLAG_LADDER = BIT(15); +const int WAYPOINTFLAG_JUMP = BIT(14); +const int WAYPOINTFLAG_CUSTOM_JP = BIT(13); // jumppad with different destination waypoint (changed in the editor) entity kh_worldkeylist; .entity kh_worldkeynext; @@ -54,6 +56,7 @@ float skill; .int wpflags; bool bot_aim(entity this, .entity weaponentity, float shotspeed, float shotspeedupward, float maxshottime, float applygravity); +void bot_aim_reset(entity this); void bot_clientconnect(entity this); void bot_clientdisconnect(entity this); void bot_cmdhelp(string scmd); @@ -118,7 +121,10 @@ void waypoint_schedulerelink(entity wp); void waypoint_spawnforitem(entity e); void waypoint_spawnforitem_force(entity e, vector org); void waypoint_spawnforteleporter(entity e, vector destination, float timetaken, entity tracetest_ent); -void waypoint_spawnforteleporter_wz(entity e, vector org, vector destination, float timetaken, vector down_dir, entity tracetest_ent); -void waypoint_spawn_fromeditor(entity pl); +void waypoint_spawnforteleporter_wz(entity e, entity tracetest_ent); +void waypoint_spawn_fromeditor(entity pl, bool at_crosshair, bool is_jump_wp); entity waypoint_spawn(vector m1, vector m2, float f); void waypoint_unreachable(entity pl); + +void waypoint_getSymmetricalOrigin_cmd(entity caller, bool save, int arg_idx); +void waypoint_getSymmetricalAxis_cmd(entity caller, bool save, int arg_idx);