Jump to content
  • 0

Prevent user to move during unitwalk


Mathew

Question


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  10
  • Reputation:   4
  • Joined:  02/27/24
  • Last Seen:  

Hello,
I'm tring to use the "unitwalk" script command to force the player to move to X/Y position, however I'd like to avoid he click somewhere else and move, then it will "break" my intention to reach one specific coordinates XY.


I was thinking to use setpcblock, however it locks the movement at all, so unitwalk doesn't move the player, would it be any other way to "lock" the user to move during the "unitwalk"?


Here's the simple code, I'd like during unitwalk, to not allow the user click somewhere to move until he reach the 107/104 cell.


`test,114,104,4    script    Test2    -1,{
    setpcblock PCBLOCK_MOVE,1;
    unitwalk getcharid(3),107,104;
end;
OnInit:
end;
}`

Thanks for help!

 

 

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  1
  • Reputation:   0
  • Joined:  10/28/24
  • Last Seen:  

On 9/15/2024 at 3:54 AM, Mathew said:

Hello,
I'm tring to use the "unitwalk" script command to force the player to move to X/Y position, however I'd like to avoid he click somewhere else and move, then it will "break" my intention to reach one specific coordinates XY.


I was thinking to use setpcblock, however it locks the movement at all, so unitwalk doesn't move the player, would it be any other way to "lock" the user to move during the "unitwalk"?  retro bowl college


Here's the simple code, I'd like during unitwalk, to not allow the user click somewhere to move until he reach the 107/104 cell.


`test,114,104,4    script    Test2    -1,{
    setpcblock PCBLOCK_MOVE,1;
    unitwalk getcharid(3),107,104;
end;
OnInit:
end;
}`

Thanks for help!

 

 

You can modify your script like this:

test,114,104,4 script Test2 -1,{ setpcblock PCBLOCK_MOVE,1; // Block movement unitwalk getcharid(3),107,104; // Start unitwalk while (getcharid(3) != 107 || getcharid(4) != 104) { // Wait until arrival sleep2 100; // Optional delay } setpcblock PCBLOCK_MOVE,0; // Unblock movement end; OnInit: end;

This will prevent player movement until they reach the specified coordinates (107, 104).

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  5
  • Topics Per Day:  0.01
  • Content Count:  22
  • Reputation:   1
  • Joined:  09/11/23
  • Last Seen:  

On 10/28/2024 at 8:12 AM, harrybetancourt8 said:

You can modify your script like this:

test,114,104,4 script Test2 -1,{ setpcblock PCBLOCK_MOVE,1; // Block movement unitwalk getcharid(3),107,104; // Start unitwalk while (getcharid(3) != 107 || getcharid(4) != 104) { // Wait until arrival sleep2 100; // Optional delay } setpcblock PCBLOCK_MOVE,0; // Unblock movement end; OnInit: end;

This will prevent player movement until they reach the specified coordinates (107, 104).

I think this won't work, because when you block the move with "setpcblock" , the unitwalk won't move the player to those coordinates.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...