C#:
  AddHtml( 220, 94, 160, 18, "<basefont color = #FFD57A>AI Type</basefont>", false, false ); // AI Type
  AddHtml( 220, 124, 160, 18, "<basefont color = #A3D7FF><div align=right>{0}%</div></basefont>c.AI" , LabelColor, false, false );
[/CODE]

Im trying to add the basecreatures AI to a gump
But I'm getting;
No overload for method 'AddHtml' takes 8 arguments

I'm doing something stupid I know it...
I've never made a gump before and i'm stumped.
Post automatically merged:

NVM I Was an idiot. Should have been
C#:
AddHtml( 220, 124, 160, 18, String.Format( "<basefont color = #FFFFFF><center><i>{0}</i></center></basefont>", c.AI ), false, false );
 
Last edited:
Back