Issue information

Issue ID
#8137
Status
Invalid
Severity
None
Started
Angelmelody
Apr 5, 2014 17:39
Last Post
Angelmelody
Apr 5, 2014 23:26
Confirmation
N/A

Angelmelody - Apr 5, 2014 17:39

[code=auto:0]- script asdfghjkl -1,{ OnInit: bindatcmd "test",strnpcinfo(3)+"::OnAtcommand",60,60; end; OnAtcommand: announce ".@atcmd_command$="+.@atcmd_command$, bc_all; end; } [/code]After tried '#test player01' command, the var .@atcmd_command$ was still

empty string

This post has been edited by Angelmelody on Apr 5, 2014 17:42

pan - Apr 5, 2014 21:17

[quote name="Angelmelody" timestamp="1396719583"]
[code=auto:0]- script asdfghjkl -1,{ OnInit: bindatcmd "test",strnpcinfo(3)+"::OnAtcommand",60,60; end; OnAtcommand: announce ".@atcmd_command$="+.@atcmd_command$, bc_all; end; } [/code]
After tried '#test player01' command, the var .@atcmd_command$ was still

empty string[/quote]Everything is being set normally, just try the following:
[code] - script test#x -1,{ OnInit: announce "RandomMessage#RandomMessage2", bc_all; bindatcmd "warp",strnpcinfo(3)+"::OnAtcommand",60,60; end; OnAtcommand: debugmes .@atcmd_command$; // Will show normally in server output end; } [/code]
Note that any message that's being sent through a broadcast and has 'text#text2' won't show #text2.

Thank you for reporting.

Angelmelody - Apr 5, 2014 23:26

[quote name="pan" timestamp="1396732647"][quote name="Angelmelody" timestamp="1396719583"]
[code=auto:0] - script asdfghjkl -1,{ OnInit: bindatcmd "test",strnpcinfo(3)+"::OnAtcommand",60,60; end; OnAtcommand: announce ".@atcmd_command$="+.@atcmd_command$, bc_all; end; } [/code]After tried '#test player01' command, the var .@atcmd_command$ was still

empty string
[/quote]Everything is being set normally, just try the following:
[code=auto:0] - script test#x -1,{ OnInit: announce "RandomMessage#RandomMessage2", bc_all; bindatcmd "warp",strnpcinfo(3)+"::OnAtcommand",60,60; end; OnAtcommand: debugmes .@atcmd_command$; // Will show normally in server output end; } [/code]Note that any message that's being sent through a broadcast and has 'text#text2' won't show #text2.

Thank you for reporting.[/quote]

Ahhh... So that's why. dunno that before you tell me,thanks