Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
ArrowQuest it does not close
Author Message
Satvet
Journeyman
*

Posts: 105
Likes Given: 32
Likes Received: 6 in 6 posts
Joined: Sep 2015
Reputation: 0



Post: #1
ArrowQuest it does not close
Quote:ON=@UserQuestArrowClick
SRC.ARROWQUEST
in this way was working before.
now it doesn't close when I click the arrow

Errors triggers success.
03-21-2020 01:39 AM
Find all posts by this user Like Post Quote this message in a reply
Jhobean
Journeyman
*

Posts: 98
Likes Given: 11
Likes Received: 8 in 3 posts
Joined: Jun 2019
Reputation: 2



Post: #2
RE: ArrowQuest it does not close
For closing, you must put 0,0,0 coord

SRC.ARROWQUEST 0, 0, 0

You can try my compass

You will need the gump

Code:
[DIALOG d_boussole]
0,0
page 0

gumppic 60 0 5012 //Boussole

dtext 160 245 165 Saisir la
dtext 105 260 165 coordonnées de la destination

dtext 130 280 165 X
dtextentry 150 280 200 20 332 0 <SRC.dtag0.boussolex>
dtext 200 280 165 Y
dtextentry 220 280 200 20 332 1 <SRC.dtag0.boussoley>

button 155 305 1149 1148 1 0 1 //OK


[DIALOG d_boussole button]
ON=0 //fernenture du dialog
SRC.ARROWQUEST 0, 0, 0 //ferme la fleche

ON=1 //actualisation de la flècehs

SRC.tag.boussolex=<ARGTXT[0]>
SRC.tag.boussoley=<ARGTXT[1]>
IF <ISNUM <ARGTXT[0]>>
    IF <ISNUM <ARGTXT[1]>>
        SRC.ARROWQUEST <SRC.dtag0.boussolex>, <SRC.dtag0.boussoley>, 1
    ELSE
    Src.sysmessage @60 Seul les nombres sont acceptes.
    ENDIF
ELSE
Src.sysmessage @60 Seul les nombres sont acceptes.
ENDIF
DIALOG d_boussole

https://www.uocryptonite.com/
03-22-2020 04:41 AM
Find all posts by this user Like Post Quote this message in a reply
Satvet
Journeyman
*

Posts: 105
Likes Given: 32
Likes Received: 6 in 6 posts
Joined: Sep 2015
Reputation: 0



Post: #3
RE: ArrowQuest it does not close
I tried "SRC.ARROWQUEST 0,0,0".
sorry my mistake, "(0,0,0 coord)" I should have said I tried. doesn't work that way
How can I use the codes you provided? Can you talk about?

Errors triggers success.
03-22-2020 07:16 AM
Find all posts by this user Like Post Quote this message in a reply
Jhobean
Journeyman
*

Posts: 98
Likes Given: 11
Likes Received: 8 in 3 posts
Joined: Jun 2019
Reputation: 2



Post: #4
RE: ArrowQuest it does not close
It's a compass, you enter a coord andnthe arrow quest appear. When closing the Compass (closing dialog) the arrow quest dissapear.

https://www.uocryptonite.com/
03-22-2020 10:11 AM
Find all posts by this user Like Post Quote this message in a reply
Satvet
Journeyman
*

Posts: 105
Likes Given: 32
Likes Received: 6 in 6 posts
Joined: Sep 2015
Reputation: 0



Post: #5
RE: ArrowQuest it does not close
@Jhobean, thx. I checked again the sample you gave, it works fine now. the last comma must be one
Quote:ON=@UserQuestArrowClick
SRC.ARROWQUEST 0,0,1 //<--
SRC.SYSMESSAGE @,,1 Arrow sign it is closed.

Errors triggers success.
03-24-2020 02:44 AM
Find all posts by this user Like Post Quote this message in a reply
Coruja
Sphere Developer
*****

Posts: 987
Likes Given: 5
Likes Received: 226 in 187 posts
Joined: Jul 2012
Reputation: 7

Dimension Shard

Post: #6
RE: ArrowQuest it does not close
clients can show multiple arrows at the same time, and each arrow must have an unique ID (0 ~ 255), so if you open an arrow with ID 1 (ARROWQUEST 1234,1234,1) you must also specify this same ID 1 to close it (ARROWQUEST 0,0,1)
03-24-2020 05:25 AM
Find all posts by this user Like Post Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)