User contributions for Habi
Jump to navigation
Jump to search
12 November 2023
- 15:1215:12, 12 November 2023 diff hist +454 N OnCheckpointStreamIn Created page with "{{Welcome|desc=Called when a checkpoint is streamed in for npc. | params=<source>( checkpointId )</source> <poem>checkpointId : The ID of the streamed in checkpoint. </poem>| example=<source lang="lua"> function OnCheckpointStreamIn(checkpointId) { print("I see checkpoint with ID: "+ checkpointId); } </source>| relfuncs=*OnCheckpointDestroyed *OnCheckpointUpdate *IsCheckpointStreamedIn *ClaimEnterCheckpoint *ClaimExitCheckpoint }}" current
- 09:5209:52, 12 November 2023 diff hist +130 GetCheckpointPos No edit summary current
- 09:4909:49, 12 November 2023 diff hist +144 GetCheckpointRadius No edit summary current
- 09:4709:47, 12 November 2023 diff hist +416 N GetCheckpointRadius Created page with "{{Welcome|desc= Returns the radius of a checkpoint.| params=<source>( checkpointId )</source> <poem>checkpointId : The ID of the checkpoint whose radius is to be obtained. </poem>| retvals=The radius of checkpoint as float. Throws error if checkpoint with the specified ID is not found.| example=<source lang relfuncs=*GetCheckpointColor *GetCheckpointPos *GetCheckpointCount *ClaimEnterCheckpoint }}"
- 09:4409:44, 12 November 2023 diff hist +4 GetCheckpointPos No edit summary
- 09:4409:44, 12 November 2023 diff hist +403 N GetCheckpointPos Created page with "{{Welcome|desc= Returns the position of the checkpoint.| params=<source>( checkpointId )</source> <poem>objectId : The ID of the checkpoint whose position is to be obtained. </poem>| retvals=The position of checkpoint as Vector. Throws error if checkpoint with the specified ID is not found.| relfuncs=*GetCheckpointColor *GetCheckpointRadius *GetCheckpointCount *ClaimEnterCheckpoint }}"
- 09:3309:33, 12 November 2023 diff hist −112 Main Page No edit summary
- 09:2809:28, 12 November 2023 diff hist −3 IsObjectTouchReportEnabled No edit summary current
- 09:2709:27, 12 November 2023 diff hist +526 N IsObjectTouchReportEnabled Created page with "{{Welcome|desc=Tells whether Touch Report is enabled for a particular object.| params=<source>( objectId )</source> <poem>objectId : The ID of the object whose property is to be checked. </poem>| example=<source lang="lua"> if( IsObjectStreamedIn( objectId ) && IsObjectTouchReportEnabled( objectId )) { ClaimObjectTouch( objectId ); } </source>| retvals= true if property is enabled, false otherwise. Throws error on invalid object ID.| relfuncs=*ClaimObjectTouch *IsO..."
- 09:2409:24, 12 November 2023 diff hist −1 IsObjectShotReportEnabled No edit summary current
- 09:2309:23, 12 November 2023 diff hist +149 IsObjectShotReportEnabled No edit summary
- 09:2009:20, 12 November 2023 diff hist +395 N IsObjectShotReportEnabled Created page with "{{Welcome|desc=Tells whether Shot Report is enabled for a particular object.| params=<source>( objectId )</source> <poem>objectId : The ID of the object whose property is to be checked. </poem>| example=<source lang="lua"> if( IsObjectShotReportEnabled( objectId ) ) { ClaimObjectShot( objectId, 17 ); //17 is weapon. } </source>| relfuncs=*ClaimObjectShot *IsObjectTouchReportEnabled }}"
- 09:1009:10, 12 November 2023 diff hist +280 N OnPickupDestroyed Created page with "{{Welcome|desc=Called when a pickup destroyed. This happens also when the pickup is streamed out.| params=<source>( pickupId)</source> <poem>pickupId : The ID of the pickup which was destroyed. </poem>| relfuncs=*OnPickupStreamIn *OnPickupUpdate *IsPickupStreamedIn }}" current
11 November 2023
- 07:5607:56, 11 November 2023 diff hist +22 IsObjectStreamedIn No edit summary current
- 07:5507:55, 11 November 2023 diff hist −3 Main Page No edit summary
- 07:5407:54, 11 November 2023 diff hist +68 Main Page No edit summary
- 07:4907:49, 11 November 2023 diff hist +348 N IsObjectStreamedIn Created page with "{{Welcome| desc=Checks whether an object is streamed in for npc. params=<syntaxhighlight lang="lua">( objectId)</syntaxhighlight> <poem>::objectid : The ID of the object </poem>| retvals=true if the object is streamed in, false otherwise(invalid id/not streamed in)| relfuncs=*IsCheckpointStreamedIn *IsPickupStreamedIn *GetObjectPos }}"
9 November 2023
- 06:2506:25, 9 November 2023 diff hist +4 IsCheckpointSphere No edit summary current
- 06:2406:24, 9 November 2023 diff hist +36 N IsCheckpointStreamIn Habi moved page IsCheckpointStreamIn to IsCheckpointStreamedIn current Tag: New redirect
- 06:2406:24, 9 November 2023 diff hist 0 m IsCheckpointStreamedIn Habi moved page IsCheckpointStreamIn to IsCheckpointStreamedIn current
- 06:2206:22, 9 November 2023 diff hist +4 IsCheckpointStreamedIn No edit summary
- 06:2106:21, 9 November 2023 diff hist +3 IsCheckpointStreamedIn No edit summary
- 06:2106:21, 9 November 2023 diff hist +371 N IsCheckpointStreamedIn Created page with "{{Welcome| desc=Checks whether a checkpoint id is streamed in. If it is streamed in, then the checkpoint id is valid.| params=<syntaxhighlight lang="lua">( checkpointId )</syntaxhighlight> <poem>::checkpointId : The ID of the checkpoint. </poem>| retvals=true if the checkpoint is streamed in, false otherwise(invalid id/not streamed in)| relfuncs=*GetVehicleSpeed }}"
- 06:1706:17, 9 November 2023 diff hist +26 IsCheckpointSphere No edit summary
- 06:1606:16, 9 November 2023 diff hist +1 IsCheckpointSphere No edit summary
- 06:1506:15, 9 November 2023 diff hist +8 IsCheckpointSphere No edit summary
- 06:1506:15, 9 November 2023 diff hist +554 N IsCheckpointSphere Created page with "{{Welcome| desc=Checks whether a checkpoint is sphere or not.| params=<syntaxhighlight lang="lua">( checkpointId )</syntaxhighlight> <poem>::checkpointId : The ID of the target checkpoint whose shape is to be determined. </poem>| retvals=true if the checkpoint is sphere, false otherwise. This function throws error if invalid checkpointId is given.| example=<source lang="lua"> if(IsCheckpointStreamIn(checkpointId)) { local isSphere=IsCheckpointSphere(checkpointId); }| rel..."
- 06:0506:05, 9 November 2023 diff hist +354 N GetPlayerAction Created page with "{{Welcome| desc=This will return the action of the a player.| params=<syntaxhighlight lang="lua">( playerId)</syntaxhighlight> <poem>::playerId: The ID of the player whose action is to be obtained. </poem>| retvals=The action of player as integer. If the target player does not exist, it will return 0.| relfuncs=*GetPlayerState *GetPlayerKeys }}" current
8 November 2023
- 13:1713:17, 8 November 2023 diff hist +12 GetPlayerSpeed No edit summary current
- 13:1713:17, 8 November 2023 diff hist +357 N GetPlayerSpeed Created page with "{{Welcome| desc=This will return the speed of the specified player, if that player is onfoot.| params=<syntaxhighlight lang="lua">( playerId)</syntaxhighlight> <poem>::playerId: The ID of the player whose speed is to be obtained. </poem>| retvals=The speed of player as Vector or zero vector on error(player not connected).| relfuncs=*GetVehicleSpeed }}"
- 12:1312:13, 8 November 2023 diff hist +289 N OnTimeWeatherSync Created page with "{{Welcome|desc=This function is called when time and weather details are send by server.| params=<source>( timerate, minute, hour, weather )</source> <poem>timerate : The timerate. minute : The minute. hour : The hour. weather : Current weather. </poem>| relfuncs=*OnServerShareTick }}" current
- 11:0811:08, 8 November 2023 diff hist −2 OnPickupUpdate No edit summary current
- 11:0711:07, 8 November 2023 diff hist +345 N OnPickupUpdate Created page with "{{Welcome|desc=Called when a streamed in pickup is updated. | params=<source>( pickupId, updateType )</source> <poem>pickupId : The ID of the pickup. updateType : 0 for change in pickup's alpha component, 1 for change in position and 2 for refresh/respwan. </poem>| relfuncs=*OnPickupStreamedIn *OnCheckpointUpdate *OnObjectUpdate }}"
- 10:5610:56, 8 November 2023 diff hist +260 N OnPickupStreamIn Created page with "{{Welcome|desc=Called when a pickup is streamed in for npc. | params=<source>( pickupId)</source> <poem>pickupId : The ID of the streamed in pickup. </poem>| relfuncs=*OnPickupDestroyed *OnPickupUpdate *OnObjectStreamIn *OnCheckpointStreamIn }}" current
7 November 2023
- 12:5012:50, 7 November 2023 diff hist −1 ClaimObjectShot No edit summary current
- 12:5012:50, 7 November 2023 diff hist +1 ClaimObjectShot No edit summary
- 12:4912:49, 7 November 2023 diff hist +468 N ClaimObjectShot Created page with "{{Welcome|desc=Sends a object shot packet to server, so that the object shot is registered.|params=<source>( objectId, weaponId )</source><poem> objectId : The ID of the target object. weaponId : The weapon with which object shot to be registered. </poem>| retvals=true if the object is streamed in, false otherwise | relfuncs=*ClaimObjectShot *IsObjectStreamedIn *GetObjectModel *OnObjectUpdate *OnObjectStreamIn *IsObjectTouchReportEnabled }}"
- 12:4712:47, 7 November 2023 diff hist +32 ClaimObjectTouch No edit summary current
- 12:4612:46, 7 November 2023 diff hist +365 N ClaimObjectTouch Created page with "{{Welcome|desc=Sends a object touch packet to server, so that the object touch is registered.|params=<source>( objectId )</source><poem> objectId : The ID of the target object. </poem>| retvals=true if the object is streamed in, false otherwise | relfuncs=*ClaimObjectShot *IsObjectStreamedIn *GetObjectModel *OnObjectUpdate *OnObjectStreamIn }}"
- 12:0612:06, 7 November 2023 diff hist +281 N ClaimExitCheckpoint Created page with "{{Welcome|desc=Sends a checkpoint exited packet to server|params=<source lang="luq">(checkpointId)</source><poem> checkpointId : The ID of the target checkpoint. </poem>| retvals=true, if checkpointId was valid(streamed in), false otherwise. | relfuncs= *ClaimEnterCheckpoint}}" current
- 12:0312:03, 7 November 2023 diff hist +109 ClaimEnterCheckpoint No edit summary current
- 11:5611:56, 7 November 2023 diff hist +172 N ClaimEnterCheckpoint Created page with "{{Welcome|desc=Sends a checkpoint entered packet to server|params=<source lang="luq">(checkpointId)</source><poem> checkpointId : The ID of the target checkpoint. </poem>}}"
3 November 2023
- 06:0406:04, 3 November 2023 diff hist +175 Main Page No edit summary
- 06:0106:01, 3 November 2023 diff hist +8 Main Page No edit summary
- 06:0006:00, 3 November 2023 diff hist −189 Main Page No edit summary
- 05:5705:57, 3 November 2023 diff hist +10 Main Page No edit summary
- 05:5405:54, 3 November 2023 diff hist −11 Main Page No edit summary
- 05:5305:53, 3 November 2023 diff hist +35 Main Page No edit summary
- 05:4405:44, 3 November 2023 diff hist +4 Main Page No edit summary
- 05:4305:43, 3 November 2023 diff hist −105 Main Page No edit summary