0 Members and 2 Guests are viewing this topic.
<form method="POST" accept-charset="UTF-8"><table><?php$taunts=safestr($taunts);foreach($taunts as $curkey=>$curval) { ?><tr> <td> <?php echo $tauntkeys[$curkey]; ?> </td> <td><input type="text" name="taunt<?php echo $curkey; ?>" size="50" value="<?php echo $curval; ?>"></td></tr><? } ?></table><br><br><INPUT type="submit" value="Make Taunts.txt"></form>
<?phpheader("Content-type: application/txt");header('Content-Disposition: attachment; filename="taunts.txt"');$taunts=file_get_contents("dump/tauntmaker_output.txt");echo iconv("UTF-8", "UTF-16LE", $taunts);?>
I've made a taunt editor already, feel free to use it. The only instruction is to enter the path to the taunts.txt file the first time you run the program.Here I posted it.