Hello,
i'm having problems displaying a big string.
Code:
new plist[32],pnum,uName[64], dastring[2000]
new len=0
get_players(plist,pnum)
for(new i=0; i<pnum; i++)
{
get_user_name(plist[i],uName,63)
len += format(dastring[len], 1024,"-== Normal Form ==-^nName: Vegeta^nTransform Level: Saiyan^nStarting PL: 700,000^n^n-== Transformation 1 ==-^nTransform to: Super Saiyan^nTransform PL: 2,000,000^nPL Multiplier: 2^n^n-== Transformation 2 ==-^nTransform to: Ultra Super Saiyan^nTransform PL between: 5,200,000 - 6,799,000^n")
len += format(dastring[len], 1024-len,"Transform PL in Normal Form between: 2,600,000 - 3,399,500^nPL Multiplier: 2.5^n^n-== Transformation 3 ==-^nTransform to: Super Saiyan 2^nTransform PL: 6,800,000^nTransform PL in Normal Form: 3,400,000^nPL Multiplier: 2^n^n-== Transformation 4 ==-^nTransform to: Majin Super Saiyan 2^nTransform PL: 15,000,000^nTransform PL in Normal Form: 3,750,000^nTransform PL in SSJ: 7,500,000^nPL Multiplier: 2^n")
show_hudmessage(plist[i],dastring)
ok it cuts off at ".....3,400,000^nPL Multiplier". Is it because hudmessage cannot display such a large string? Anyone got any alternatives?