1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | prontera,102,128,6 script Guildo#guildmaker::guildmaker 653,{ function English; function guild_create; if ( #language == 1 ) English; mes "Gilden Name eingeben!"; guild_create; close; English: mes "Please Enter a guild Name!"; guild_create; end; guild_create: input .@name$; atcommand "@guild "+.@name$+""; end; } |