Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.62 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  5. <title>Creator Characters</title>
  6. </head>
  7.  
  8. <body>
  9. <form method="post">
  10. Nazwa postaci: <input type="text" name="$nazwa" /><br>
  11. Opis Klasy: <input type="text" name="opis" /><br>
  12. Bronie postaci: <input type="text" name="bronie" /><br>
  13. Ilość życia: <input type="text" name="HP" /><br>
  14. Ilość inteligencji: <input type="text" name="INT" /><br>
  15. Ilość wytrzymałości: <input type="text" name="WYT" /><br>
  16. Ilość kondycji: <input type="text" name="KON" /><br><br>
  17.  
  18. Klasa premium: <input type="radio" name="PRE" /><br><br>
  19.  
  20. <button type="reset" name="reset">Zresetuj dane</button>
  21. <input type="submit" value="Wygeneruj" name="wyslano" />
  22. </form>
  23. <br /><br /><br /><br />
  24.  
  25.  
  26.  
  27.  
  28.  
  29. <table width="500" hight="500" algin="left">
  30. <tr><td>
  31. <?php
  32. if(isset($_POST['wyslano']))
  33. {
  34. if(!empty($_POST['nazwa']) || !empty($_POST['opis']) || !empty($_POST['bronie']) || !empty($_POST['HP']) || !empty($_POST['INT']) || !empty($_POST['WYT']) || !empty($_POST['KON']))
  35. {
  36. echo '#include <amxmodx><br>
  37. #include <codmod><br><br>';
  38.  
  39. echo 'new const nazwa[] = \"'.$nazwa.'\";<br>
  40. new const opis[] = "";<br>
  41. new const bronie = 1<<<br>
  42. new const zdrowie = ;<br>
  43. new const kondycja = ;<br>
  44. new const inteligencja = ;<br>
  45. new const wytrzymalosc = ;<br><br>
  46.  
  47. public plugin_init() {<br>
  48. register_plugin(nazwa, "1.0", "QTM_Peyote");<br><br>
  49.  
  50. cod_register_class(nazwa, opis, bronie, zdrowie, kondycja, inteligencja, wytrzymalosc)<br>;';
  51. }
  52. else {
  53. echo '<h2> WYPEŁNI WSZYSTKIE POLA</h2>';
  54. }
  55. }
  56. ?>
  57. </td></tr></table>
  58.  
  59.  
  60.  
  61.  
  62. </body>
  63. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement