npc_test_longvar.txt 1.1 KB

1234567891011121314151617181920212223
  1. //===== rAthena Script =======================================
  2. //= Sample: Character variable lengths Test
  3. //===== By: ==================================================
  4. //= rAthena Dev Team
  5. //===== Last Updated: ========================================
  6. //= 20171125
  7. //===== Description: =========================================
  8. //= An validation test about long character variable stored on char-serv
  9. //= from https://github.com/rathena/rathena/issues/2425
  10. //============================================================
  11. prontera,155,176,3 script Pront Test 77,{
  12. mes "Testing to store long variable on char-serv";
  13. //test1 long value
  14. test$ = "0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345";
  15. //test2 normal length
  16. test2$ = "anything really, doesn't matter at this point";
  17. //test3 long key (41)
  18. thisisareallylongkeyImeanReallyReallyLong$ = "gotcha";
  19. //test4 long key 2 (with int)
  20. ReallyReallyReallyReallyReallyReallyLong = 42;
  21. end;
  22. }