|
发表于 2008-8-10 17:02:31
|
显示全部楼层
|阅读模式
来自 中国–四川–成都–温江区
如这段函数:
public DisplayInfo(id){
if ( g_SpecMode[id]){
new player = read_data(2);
if ( is_user_connected( player)){
new szName[32];
get_user_name( player, szName, 31);
new szIP[16], szCountry[40], szArea[64];
get_user_ip( player, szIP, 15, 1);
get_ipinfo( szIP, szCountry, szArea, 39, 63);
new izStats[8], izBody[8];
iRankPos = get_user_stats( player, izStats, izBody);
new szSignature[96], HasSignature;
HasSignature = dt_getsign( szName, szSignature, 95);
new szMessage[256];
format( szMessage, 255, "^x04【%s】%s 排名: %d^n^x01爆头(率): %d(%0.2f) 杀敌: %d 死亡: %d^n^x01命中(率): %d(%0.2f) 射击: %d^n^x01来自: %s(%s)^n^x04【个性签名】^x01: %s",
iRank(),
szName,
iRankPos,
izStats[STATS_HS],
100.0 * float( izStats[STATS_HS])/float( izStats[STATS_KILLS]),
izStats[STATS_KILLS],
izStats[STATS_DEATHS],
izStats[STATS_HITS],
100.0 * float( izStats[STATS_HITS])/float( izStats[STATS_SHOTS]),
izStats[STATS_SHOTS],
szCountry,
szArea,
(HasSignature == 0)?"无(say $***)":szSignature);
set_hudmessage( 0, 103, 0, -1.0, 0.64, 0, 6.0, 8.0, 0.5, 0.15, 1) ;
show_hudmessage( id, szMessage);
}
}
}
请R版主指教,我想修改它的显示位置为屏幕右下角,应该修改那里? |
|