So, im having a little problem how can i show the value from an specific skill, i was trying like this:
Code: Select all
program showskill;
{$Include 'all.inc'} 
var
tempskill : integer;
Begin 
 UoSay('Show Magery Skill Test');
 tempskill := GetSkillValue('Magery');
 UoSay('Magery: '+IntToStr(tempskill');
end.




