nunesb Posted January 5, 2013 Group: Members Topic Count: 7 Topics Per Day: 0.00 Content Count: 17 Reputation: 0 Joined: 11/30/12 Last Seen: December 9, 2019 Share Posted January 5, 2013 (edited) Which command is used to check a no-string variable of a character that is not my ? mes "Enter the name of the character you want to check the "ABCDEFG" variable:"; input @tmp$; next; mes "<SHOW VARIABLE "ABCDEFG" OF @tmp$ CHAR>"; someone may help ? Edited January 5, 2013 by nunesb Quote Link to comment Share on other sites More sharing options...
QQfoolsorellina Posted January 6, 2013 Group: Members Topic Count: 40 Topics Per Day: 0.01 Content Count: 587 Reputation: 105 Joined: 11/19/11 Last Seen: July 7, 2019 Share Posted January 6, 2013 try this not tested mes "Enter the name of the character you want to check the "ABCDEFG" variable:"; input .@tmp$; set .@taid,getcharid(3,.@tmp$); if(!.@taid){ mes "Char is offline or not exist"; close; } set .@said,getcharid(3); attachrid(.@taid); set .@tvalue,ABCDEFG; attachrid(.@said); mes "VARIABLE "ABCDEFG" OF "+.@tmp$+"is"+.@tvalue; close; 1 Quote Link to comment Share on other sites More sharing options...
nunesb Posted January 6, 2013 Group: Members Topic Count: 7 Topics Per Day: 0.00 Content Count: 17 Reputation: 0 Joined: 11/30/12 Last Seen: December 9, 2019 Author Share Posted January 6, 2013 Thanks a lot! Quote Link to comment Share on other sites More sharing options...
Ryokem Posted January 6, 2013 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 205 Reputation: 19 Joined: 10/12/12 Last Seen: November 7, 2013 Share Posted January 6, 2013 set .@taid,getcharid(3,.@tmp$); if(!.@taid){ mes "Char is offline or not exist"; close; } set .@said,getcharid(3); attachrid(.@taid); You can optimize this part just by using attachrid. A little bit more tricky, but helps saving heap and lowers the C-O (credits to you) input .@tmp$; set .@MyID, getcharid(3); if( !attachrid(getcharid(3,.@tmp$)) ) { mes "Char is offline or not exist"; close; } set .@value, ABCDEFG; attachrid(.@MyID); mes .@tmp$ + "'s ABCDEFG variable has value: " + .@value; Quote Link to comment Share on other sites More sharing options...
Question
nunesb
Which command is used to check a no-string variable of a character that is not my ?
someone may help ?
Edited by nunesbLink to comment
Share on other sites
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.