originally I had:

Code:
AddTooltip( 1114773,"Pass<br>Info/Help");
but since the last update now I get errors, of:
Code:
 CS1501: Line 584: No overload for method 'AddTooltip' takes 2 arguments

Not to sure what had changed and why I am having issues now with it. Any help would be much appreciated.
Thanks in advance.
 
Tooltips with arguments caused client crashes as it is not supported by the client. If you use BaseGump, that method is supported.
 
Not sure what you mean by use BaseGump...
I tried:
BaseGump.AddToolTip ( 1114773,"Pass<br>Info/Help");
and a few other ways but still was not able to get it up and running...
:oops:
 
Hello again, What is the correct way of putting this as a tooltip?

1114774, ~1_VAL~<br>~2_VAL~<br>~3_VAL~


// AddTooltip( 1114774,"text val1<br>\"text val2\"<br>text val3 \"blabla\"." );
AddTooltip( 1114774, {0} <br> {1} <br> {2},"text1", "\"test2\"", "text3 \"blabla\"." );


Thanks in advance again :oops:o_O
 
Back