send messeger hlep
#1

Quote:

C:\Documents and Settings\Thien An\Desktop\samp03z_svr_R1_win32\gamemodes\test.pwn (65) : error 075: input line too long (after substitutions)
C:\Documents and Settings\Thien An\Desktop\samp03z_svr_R1_win32\gamemodes\test.pwn (66) : error 037: invalid string (possibly non-terminated string)
C:\Documents and Settings\Thien An\Desktop\samp03z_svr_R1_win32\gamemodes\test.pwn (66) : error 017: undefined symbol "Sao"
C:\Documents and Settings\Thien An\Desktop\samp03z_svr_R1_win32\gamemodes\test.pwn (66) : error 017: undefined symbol "Mot"
C:\Documents and Settings\Thien An\Desktop\samp03z_svr_R1_win32\gamemodes\test.pwn (66) : fatal error 107: too many error messages on one line

PHP код:
public OnPlayerSpawn(playerid)
{
        
ShowPlayerDialog(playerid,2,DIALOG_STYLE_MSGBOX,"SERVER TRO Giup:","Sao Mot. thoi gian bao tri server da update rat nhieu chuc nang moi\nban muon giai tri hay di den bai bien ban. co the su dung /gitri1-10 chuc ban vui ve voi khu giaitri\nVoi cac ban nen Luu Y nhung ban so giao thong KMH tren duong` de tranh bi tai nan giao thong\nSERVER cung da cap nhat mot khu dua bo o? gan` HQ VIP o khu dua bo ban co the dat cuoc\ntrong thanh pho co rat nhieu nhung hop thu ban co the gui thu tinh` tai nhung hop thu,ban phai vao 24/7 de mua giay viet\nbai huong dan danh cho nhung nguoi khong biet duong su dung /timduong de tim duong di\n danh cho nhung nguoi moi choi ban co the /timvieclam de tim mot cong viec an y\nSERVER da dat cac' khu an toan tai nhung noi danh cho newbie","vang tui da hieu","X");
        return 
1;

Reply
#2

that dialog is to long thats why you got those problems
better use this
pawn Код:
new string[952];
strcat(string, "Sao Mot. thoi gian bao tri server da update rat nhieu chuc nang moi\n");
strcat(string, "ban muon giai tri hay di den bai bien ban. co the su dung /gitri1-10 chuc ban vui ve voi khu giaitri\n");
strcat(string, "Voi cac ban nen Luu Y nhung ban so giao thong KMH tren duong` de tranh bi tai nan giao thong\n");
strcat(string, "SERVER cung da cap nhat mot khu dua bo o? gan` HQ VIP o khu dua bo ban co the dat cuoc\n");
strcat(string, "trong thanh pho co rat nhieu nhung hop thu ban co the gui thu tinh` tai nhung hop thu,ban phai vao 24/7 de mua giay viet\nbai huong dan danh cho nhung nguoi khong biet duong su dung /timduong de tim duong di\n");
strcat(string, "danh cho nhung nguoi moi choi ban co the /timvieclam de tim mot cong viec an y\n");
strcat(string, "SERVER da dat cac' khu an toan tai nhung noi danh cho newbie);
ShowPlayerDialog(playerid, 2, DIALOG_STYLE_MSGBOX, "
SERVER TRO Giup:", string, "vang tui da hieu","X");
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)