-
-
Notifications
You must be signed in to change notification settings - Fork 126
/
config.php
1084 lines (998 loc) · 47.1 KB
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
if (!defined('ZNOTE_OS')) {
$isWindows = (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN');
define('ZNOTE_OS', ($isWindows) ? 'WINDOWS' : 'LINUX');
}
// If you want to use items.php (not 100% yet, I guess)
// Tested with TFS master items.xml (1.x)
$config['items'] = false;
// Available options: TFS_02, TFS_03, OTHIRE, TFS_10
// OTHire = OTHIRE
// TFS 0.2 = TFS_02
// TFS 0.3 = TFS_03 (If you are using 0.3.6, set $config['salt'] to false)!
// TFS 0.4 = TFS_03
// TFS 1.x = TFS_10 (Current under development version)
$config['ServerEngine'] = 'TFS_10';
// As far as I know, OTX is based on TFS_03, so make sure TFS version is configured TFS_03
$config['CustomVersion'] = false;
$config['site_title'] = 'Znote AAC';
$config['site_title_context'] = 'Because open communities are good communities. :3';
$config['site_url'] = "http://demo.znote.eu";
// Path to server folder without "\" (or "/") at the end, ex: C:\Users\Username\Documents\GitHub\forgottenserver
$config['server_path'] = '';
// ------------------------ \\
// MYSQL CONNECTION DETAILS \\
// ------------------------ \\
// phpmyadmin username for OT server: (DONT USE "root" if you are hosting to public).
$config['sqlUser'] = 'tfs13';
// phpmyadmin password for OT server:
$config['sqlPassword'] = 'tfs13';
// The database name to connect to. (This is usually same as username).
$config['sqlDatabase'] = 'tfs13';
// Hostname is usually localhost or 127.0.0.1.
$config['sqlHost'] = '127.0.0.1';
// QR code authenticator Only works with TFS 1.2+
$config['twoFactorAuthenticator'] = false;
// You can use the mobile phone app "authy" with this.
/* CLOCK FUNCTION
- getClock() = returns current time in numbers.
- getClock(time(), true) = returns current time in formatted date
- getClock(false, true) = same as above
- getClock(false, true, false) = get current time, don't adjust timezone
- echo getClock($profile_data['lastlogin'], true); = from characterprofile,
explains when user was last logged in. */
function getClock($time = false, $format = false, $adjust = true) {
if ($time === false) $time = time();
// Date string representation
$date = "d F Y (H:i)"; // 15 July 2013 (13:50)
if ($adjust) $adjust = (1 * 3600); // Adjust to fit your timezone.
else $adjust = 0;
if ($format) return date($date, $time+$adjust);
else return $time+$adjust;
}
// ------------------- \\
// CUSTOM SERVER STUFF \\
// ------------------- \\
// Enable / disable Questlog function (true / false)
$config['EnableQuests'] = false;
// array for filling questlog (Questid, max value, name, end of the quest fill 1 for the last part 0 for all others)
$config['quests'] = array(
array(1501,100,"Killing in the Name of",0),
array(1502,150,"Killing in the Name of",0),
array(65001,100,"Killing in the Name of",0),
array(65002,150,"Killing in the Name of",0),
array(65003,300,"Killing in the Name of",0),
array(65004,3,"Killing in the Name of",0),
array(65005,300,"Killing in the Name of",0),
array(65006,150,"Killing in the Name of",0),
array(65007,200,"Killing in the Name of",0),
array(65008,300,"Killing in the Name of",0),
array(65009,300,"Killing in the Name of",0),
array(65010,300,"Killing in the Name of",0),
array(65011,300,"Killing in the Name of",0),
array(65012,300,"Killing in the Name of",0),
array(65013,300,"Killing in the Name of",0),
array(65014,300,"Killing in the Name of",1),
array(12110,2,"The Inquisition",0),
array(12111,7,"The Inquisition",0),
array(12112,3,"The Inquisition",0),
array(12113,6,"The Inquisition",0),
array(12114,3,"The Inquisition",0),
array(12115,3,"The Inquisition",0),
array(12116,3,"The Inquisition",0),
array(12117,5,"The Inquisition",1),
array(330,3,"Sam's Old Backpack",1),
array(12121,3,"The Ape City",0),
array(12122,5,"The Ape City",0),
array(12123,3,"The Ape City",0),
array(12124,3,"The Ape City",0),
array(12125,3,"The Ape City",0),
array(12126,3,"The Ape City",0),
array(12127,4,"The Ape City",0),
array(12128,3,"The Ape City",0),
array(12129,3,"The Ape City",1),
array(12101,1,"The Ancient Tombs",0),
array(12102,1,"The Ancient Tombs",0),
array(12103,1,"The Ancient Tombs",0),
array(12104,1,"The Ancient Tombs",0),
array(12105,1,"The Ancient Tombs",0),
array(12106,1,"The Ancient Tombs",0),
array(12107,1,"The Ancient Tombs",1),
array(12022,3,"Barbarian Test Quest",0),
array(12022,3,"Barbarian Test Quest",0),
array(12022,3,"Barbarian Test Quest",1),
array(12025,3,"The Ice Islands Quest",0),
array(12026,5,"The Ice Islands Quest",0),
array(12027,3,"The Ice Islands Quest",0),
array(12028,2,"The Ice Islands Quest",0),
array(12029,6,"The Ice Islands Quest",0),
array(12030,8,"The Ice Islands Quest",0),
array(12031,3,"The Ice Islands Quest",0),
array(12032,4,"The Ice Islands Quest",0),
array(12033,2,"The Ice Islands Quest",0),
array(12034,2,"The Ice Islands Quest",0),
array(12035,2,"The Ice Islands Quest",0),
array(12036,6,"The Ice Islands Quest",1),
);
// Achievements based on "https://github.com/otland/forgottenserver/blob/master/data/lib/core/achievements.lua" (TFS 1.x)
$config['Ach'] = false;
$config['achievements'] = array(
35000 => array(
'First Dragon', // name
'Rumours say that you will never forget your first Dragon', // description
'points' => '1', // points
'img' => 'https://i.imgur.com/Nk2XDge.gif', // direct image link or path, ex: 'images/dragon.png'
),
35001 => array(
'Uniwheel',
'You\'re probably one of the very few people with this classic and unique ride, hope it doesn\'t break anytime soon.', // description
'points' => '1',
'img' => 'https://i.imgur.com/0GYRgGj.gif', // direct image link or path, ex: 'images/uniwheel.png'
'secret' => true
),
30001 => array(
'Allow Cookies?',
'With a perfectly harmless smile you fooled all of those wicecrackers into eating your exploding cookies. Consider a boy or girl scout outfit next time to make the trick even better.',
'points' => '10', // 1-3 points (1 star), 4-6 points (2 stars), 7-9 points(3 stars), 10 points => (4 stars)
'secret' => true // show "secret" badge
),
30002 => array(
'Backpack Tourist',
'If someone lost a random thing in a random place, you\'re probably a good person to ask and go find it, even if you don\'t know what and where.',
'points' => '7'
),
30003 => array(
'Bearhugger',
'Warm, furry and cuddly - though that same bear you just hugged would probably rip you into pieces if he had been conscious, he reminded you of that old teddy bear which always slept in your bed when you were still small.',
'points' => '4'
),
30004 => array(
'Bone Brother',
'You\'ve joined the undead bone brothers - making death your enemy and your weapon as well. Devouring what\'s weak and leaving space for what\'s strong is your primary goal.',
'points' => '1'
),
30005 => array(
'Chorister',
'Lalalala... you now know the cult\'s hymn sung in Liberty Bay by heart. Not that hard, considering that it mainly consists of two notes and repetitive lyrics.',
'points' => '1'
),
30006 => array(
'Fountain of Life',
'You found and took a sip from the Fountain of Life. Thought it didn\'t grant you eternal life, you feel changed and somehow at peace.',
'points' => '1',
'secret' => true
),
30007 => array(
'Here, Fishy Fishy!',
'Ah, the smell of the sea! Standing at the shore and casting a line is one of your favourite activities. For you, fishing is relaxing - and at the same time, providing easy food. Perfect!',
'points' => '1'
),
30008 => array(
'Honorary Barbarian',
'You\'ve hugged bears, pushed mammoths and proved your drinking skills. And even though you have a slight hangover, a partially fractured rib and some greasy hair on your tongue, you\'re quite proud to call yourself a honorary barbarian from now on.',
'points' => '1'
),
30009 => array(
'Huntsman',
'You\'re familiar with hunting tasks and have carried out quite a few already. A bright career as hunter for the Paw & Fur society lies ahead!',
'points' => '2'
),
300010 => array(
'Just in Time',
'You\'re a fast runner and are good at delivering wares which are bound to decay just in the nick of time, even if you can\'t use any means of transportation or if your hands get cold or smelly in the process.',
'points' => '1'
),
30011 => array(
'Matchmaker',
'You don\'t believe in romance to be a coincidence or in love at first sight. In fact - love potions, bouquets of flowers and cheesy poems do the trick much better than ever could. Keep those hormones flowing!',
'points' => '1',
'secret' => true
),
30012 => array(
'Nightmare Knight',
'You follow the path of dreams and that of responsibility without self-centered power. Free from greed and selfishness, you help others without expecting a reward.',
'points' => '1',
'secret' => true
),
30013 => array(
'Party Animal',
'Oh my god, it\'s a paaaaaaaaaaaarty! You\'re always in for fun, friends and booze and love being the center of attention. There\'s endless reasons to celebrate! Woohoo!',
'points' => '1',
'secret' => true
),
30014 => array(
'Secret Agent',
'Pack your spy gear and get ready for some dangerous missions in service of a secret agency. You\'ve shown you want to - but can you really do it? Time will tell.',
'points' => '1',
'secret' => true
),
30015 => array(
'Talented Dancer',
'You\'re a lord or lady of the dance - and not afraid to use your skills to impress tribal gods. One step to the left, one jump to the right, twist and shout!',
'points' => '1'
),
30016 => array(
'Territorial',
'Your map is your friend - always in your back pocket and covered with countless marks of interesting and useful locations. One could say that you might be lost without it - but luckily there\'s no way to take it from you.',
'points' => '1'
),
30017 => array(
'Worm Whacker',
'Weehee! Whack those worms! You sure know how to handle a big hammer.',
'points' => '1',
'secret' => true
),
30018 => array(
'Allowance Collector',
'You certainly have your ways when it comes to acquiring money. Many of them are pink and paved with broken fragments of porcelain.',
'points' => '1'
),
30019 => array(
'Amateur Actor',
'You helped bringing Princess Buttercup, Doctor Dumbness and Lucky the Wonder Dog to life - and will probably dream of them tonight, since you memorised your lines perfectly. What a .. special piece of.. screenplay.',
'points' => '2'
),
30020 => array(
'Animal Activist',
'You have a soft spot for little, weak animals, and you do everything in your power to protect them - even if you probably eat dragons for breakfast.',
'points' => '2',
'secret' => true
),
);
// TFS 1.x powergamers and top online
// Before enabling powergamers, make sure that you have added Lua files and added the SQL columns to your server db.
// files can be found at Lua folder.
$config['powergamers'] = array(
'enabled' => true, // Enable or disable page
'limit' => 20, // Number of players that it will show.
);
$config['toponline'] = array(
'enabled' => true, // Enable or disable page
'limit' => 20, // Number of players that it will show.
);
// Vocation IDs, names and which vocation ID they got promoted from
$config['vocations'] = array(
0 => array(
'name' => 'No vocation',
'fromVoc' => false
),
1 => array(
'name' => 'Sorcerer',
'fromVoc' => false
),
2 => array(
'name' => 'Druid',
'fromVoc' => false
),
3 => array(
'name' => 'Paladin',
'fromVoc' => false
),
4 => array(
'name' => 'Knight',
'fromVoc' => false
),
5 => array(
'name' => 'Master Sorcerer',
'fromVoc' => 1
),
6 => array(
'name' => 'Elder Druid',
'fromVoc' => 2
),
7 => array(
'name' => 'Royal Paladin',
'fromVoc' => 3
),
8 => array(
'name' => 'Elite Knight',
'fromVoc' => 4
)
);
/* Vocation stat gains per level
- Ordered by vocation ID
- Currently used for admin_skills page. */
$config['vocations_gain'] = array(
0 => array(
'hp' => 5,
'mp' => 5,
'cap' => 10
),
1 => array(
'hp' => 5,
'mp' => 30,
'cap' => 10
),
2 => array(
'hp' => 5,
'mp' => 30,
'cap' => 10
),
3 => array(
'hp' => 10,
'mp' => 15,
'cap' => 20
),
4 => array(
'hp' => 15,
'mp' => 5,
'cap' => 25
),
5 => array(
'hp' => 5,
'mp' => 30,
'cap' => 10
),
6 => array(
'hp' => 5,
'mp' => 30,
'cap' => 10
),
7 => array(
'hp' => 10,
'mp' => 15,
'cap' => 20
),
8 => array(
'hp' => 15,
'mp' => 5,
'cap' => 25
),
);
// Town ids and names: (In RME map editor, open map, click CTRL + T to view towns, their names and their IDs.
// townID => 'townName' ex: [1 => 'Rookgaard']
$config['towns'] = array(
1 => 'Rookgaard',
2 => 'Rookgaard Tutorial Island',
3 => 'Island Of Destiny',
4 => 'Dawnport',
5 => "Ab'Dendriel",
6 => 'Carlin',
7 => 'Kazordoon',
8 => 'Thais',
9 => 'Venore',
10 => 'Ankrahmun',
11 => 'Edron',
12 => 'Farmine',
13 => 'Darashia',
14 => 'Liberty Bay',
15 => 'Port Hope',
16 => 'Svargrond',
17 => 'Yalahar',
18 => 'Gray Beach',
19 => 'Krailos',
20 => 'Rathleton',
21 => 'Roshamuul',
22 => 'Issavi'
);
// -- HOUSE AUCTION SYSTEM! (TFS 1.x ONLY)
$config['houseConfig'] = array(
'HouseListDefaultTown' => 8, // Default town id to display when visting house list page page.
'minimumBidSQM' => 200, // Minimum bid cost on auction (per SQM)
'auctionPeriod' => 24 * 60 * 60, // 24 hours auction time.
'housesPerPlayer' => 1,
'requirePremium' => false,
'levelToBuyHouse' => 8,
// Instant buy with shop points
'shopPoints' => array(
'enabled' => true,
// SQM count => points cost
'cost' => array(
1 => 10,
25 => 15,
60 => 25,
100 => 30,
200 => 40,
300 => 50,
),
),
);
// Leave on black square in map and player should get teleported to their selected town.
// If chars get buggy set this position to a beginner location to force players there.
$config['default_pos'] = array(
'x' => 5,
'y' => 5,
'z' => 2,
);
$config['war_status'] = array(
0 => 'Pending',
1 => 'Accepted',
2 => 'Rejected',
3 => 'Canceled',
4 => 'Ended by kill limit',
5 => 'Ended',
);
/* -- SUB PAGES --
Some custom layouts/templates have custom pages, they can use
this sub page functionality for that.
*/
$config['allowSubPages'] = true;
// ---------------- \\
// Create Character \\
// ---------------- \\
// Max characters on each account:
$config['max_characters'] = 7;
// Available character vocation users can choose (specify vocation ID).
$config['available_vocations'] = array(1, 2, 3, 4);
// Available towns (specify town ids, etc: (1, 2, 3); to display 3 town options (town id 1, 2 and 3).
// Town IDs are the ones from $config['towns'] array
$config['available_towns'] = array(6, 7, 8, 9);
$config['player'] = array(
'base' => array(
'level' => 8,
'health' => 185,
'mana' => 90,
'cap' => 470,
'soul' => 100
),
// Health, mana cap etc are calculated with $config['vocations_gain'] and 'base' values of $config['player']
'create' => array(
'level' => 8,
'novocation' => array( // Vocation id 0 (No vocation) special settings
'level' => 1,
'forceTown' => true,
'townId' => 1
),
'skills' => array( // See $config['vocations'] for proper vocation names of these IDs
// No vocation
0 => array(
'magic' => 0,
'fist' => 10,
'club' => 10,
'axe' => 10,
'sword' => 10,
'dist' => 10,
'shield' => 10,
'fishing' => 10,
),
// Sorcerer
1 => array(
'magic' => 0,
'fist' => 10,
'club' => 10,
'axe' => 10,
'sword' => 10,
'dist' => 10,
'shield' => 10,
'fishing' => 10,
),
// Druid
2 => array(
'magic' => 0,
'fist' => 10,
'club' => 10,
'axe' => 10,
'sword' => 10,
'dist' => 10,
'shield' => 10,
'fishing' => 10,
),
// Paladin
3 => array(
'magic' => 0,
'fist' => 10,
'club' => 10,
'axe' => 10,
'sword' => 10,
'dist' => 10,
'shield' => 10,
'fishing' => 10,
),
// Knight
4 => array(
'magic' => 0,
'fist' => 10,
'club' => 10,
'axe' => 10,
'sword' => 10,
'dist' => 10,
'shield' => 10,
'fishing' => 10,
),
),
'male_outfit' => array(
'id' => 128,
'head' => 78,
'body' => 68,
'legs' => 58,
'feet' => 76
),
'female_outfit' => array(
'id' => 136,
'head' => 78,
'body' => 68,
'legs' => 58,
'feet' => 76
)
)
);
// Minimum allowed letters in character name. Ex: 4 letters: "Kare".
$config['minL'] = 3;
// Maximum allowed letters in character name. Ex: 20 letters: "Bobkareolesofiesberg"
// Pre QT clients (lower than version 11) support only 20 letters max, while newer clients support up to 25
$config['maxL'] = 20;
// Maximum allowed words in character name. Ex: 2 words = "Bob Kare", 3 words: "Bob Arne Kare" as maximum char name words.
$config['maxW'] = 3;
// -------------- \\
// WEBSITE STUFF \\
// -------------- \\
// News to be displayed per page
$config['news_per_page'] = 5;
// Enable or disable changelog ticker in news page.
$config['UseChangelogTicker'] = true;
// Highscore configuration
$config['highscore'] = array(
'rows' => 100,
'rowsPerPage' => 20,
'ignoreGroupId' => 2, // Ignore this and higher group ids (staff)
);
// ONLY FOR TFS 0.2 (TFS 0.3/4 users don't need to care about this, as its fully loaded from db)
$config['house'] = array(
'house_file' => 'C:\test\Mystic Spirit_0.2.5\data\world\forgotten-house.xml',
'price_sqm' => '50', // price per house sqm
);
$config['delete_character_interval'] = '3 DAY'; // Delay after user character delete request is executed, ex: 1 DAY, 2 HOUR, 3 MONTH etc.
$config['validate_IP'] = false;
$config['salt'] = false;
// Restricted names
$config['invalidNameTags'] = array(
"owner", "gamemaster", "hoster", "admin", "staff", "tibia", "account", "god", "hitler", "cm", "gm", "game master", "anal", "anus", "arse", "ass", "asses", "assfucker", "assfukka", "asshole", "arsehole", "asswhole", "assmunch", "ballsack", "wanky", "whore", "whoar", "xxx", "xx", "yaoi", "yury", "bastard", "beastial", "bestial", "bellend", "bdsm", "beastiality", "bestiality", "bitch", "bitches", "bitchin", "bitching", "bimbo", "bimbos", "blow job", "blowjob", "blowjobs", "blue waffle", "boob", "boobs", "booobs", "boooobs", "booooobs", "booooooobs", "breasts", "booty call", "brown shower", "brown showers", "boner", "bondage", "buceta", "bukake", "bukkake", "bullshit", "bull shit", "busty", "butthole", "carpet muncher", "cawk", "chink", "cipa", "clit", "clits", "clitoris", "cnut", "cock", "cocks", "cockface", "cockhead", "cockmunch", "cockmuncher", "cocksuck", "cocksucked", "cocksucking", "cocksucks", "cocksucker", "cokmuncher", "coon", "cow girl", "cow girls", "cowgirl", "cowgirls", "crap", "crotch", "cum", "cummer", "cumming", "cuming", "cums", "cumshot", "cunilingus", "cunillingus", "cunnilingus", "cunt", "cuntlicker", "cuntlicking", "cunts", "damn", "dick", "dickhead", "dildo", "dildos", "dink", "dinks", "deepthroat", "deep throat", "dog style", "doggie style", "doggiestyle", "doggy style", "doggystyle", "donkeyribber", "doosh", "douche", "duche", "dyke", "ejaculate", "ejaculated", "ejaculates", "ejaculating", "ejaculatings", "ejaculation", "ejakulate", "erotic", "erotism", "fag", "faggot", "fagging", "faggit", "faggitt", "faggs", "fagot", "fagots", "fags", "fatass", "femdom", "fingering", "footjob", "foot job", "fuck", "fucks", "fucker", "fuckers", "fucked", "fuckhead", "fuckheads", "fuckin", "fucking", "fcuk", "fcuker", "fcuking", "felching", "fellate", "fellatio", "fingerfuck", "fingerfucked", "fingerfucker", "fingerfuckers", "fingerfucking", "fingerfucks", "fistfuck", "fistfucked", "fistfucker", "fistfuckers", "fistfucking", "fistfuckings", "fistfucks", "flange", "fook", "fooker", "fucka", "fuk", "fuks", "fuker", "fukker", "fukkin", "fukking", "futanari", "futanary", "gangbang", "gangbanged", "gang bang", "gokkun", "golden shower", "goldenshower", "gaysex", "goatse", "handjob", "hand job", "hentai", "hooker", "hoer", "homo", "horny", "incest", "jackoff", "jack off", "jerkoff", "jerk off", "jizz", "knob", "kinbaku", "labia", "masturbate", "masochist", "mofo", "mothafuck", "motherfuck", "motherfucker", "mothafucka", "mothafuckas", "mothafuckaz", "mothafucked", "mothafucker", "mothafuckers", "mothafuckin", "mothafucking", "mothafuckings", "mothafucks", "mother fucker", "motherfucked", "motherfucker", "motherfuckers", "motherfuckin", "motherfucking", "motherfuckings", "motherfuckka", "motherfucks", "milf", "muff", "negro", "nigga", "nigger", "nigg", "nipple", "nipples", "nob", "nob jokey", "nobhead", "nobjocky", "nobjokey", "numbnuts", "nutsack", "nude", "nudes", "orgy", "orgasm", "orgasms", "panty", "panties", "penis", "playboy", "pinto", "porn", "porno", "pornography", "pron", "punheta", "pussy", "pussies", "puta", "rape", "raping", "rapist", "rectum", "retard", "rimming", "sadist", "sadism", "schlong", "scrotum", "sex", "semen", "shemale", "she male", "shibari", "shibary", "shit", "shitdick", "shitfuck", "shitfull", "shithead", "shiting", "shitings", "shits", "shitted", "shitters", "shitting", "shittings", "shitty", "shota", "skank", "slut", "sluts", "smut", "smegma", "spunk", "strip club", "stripclub", "tit", "tits", "titties", "titty", "titfuck", "tittiefucker", "titties", "tittyfuck", "tittywank", "titwank", "threesome", "three some", "throating", "twat", "twathead", "twatty", "twunt", "viagra", "vagina", "vulva", "viado", "wank", "wanker",
);
// Comment out the below array if you want to allow players to use creature names:
$config['creatureNameTags'] = array(
"acolyte of the cult", "adept of the cult", "amazon", "ancient scarab", "arachnophobica", "assassin", "azure frog", "badger", "bandit", "banshee", "barbarian bloodwalker", "barbarian brutetamer", "barbarian headsplitter", "barbarian skullhunter", "bat", "bear", "behemoth", "betrayed wraith", "biting book", "black knight", "black sphinx acolyte", "blightwalker", "blood beast", "blood crab", "blood hand", "blood priest", "blue djinn", "boar", "bog frog", "bog raider", "bonebeast", "bonelord", "boogy", "brain squid", "braindeath", "breach brood", "brimstone bug", "burning book", "burning gladiator", "burster spectre", "carniphila", "carrion worm", "cave devourer", "centipede", "chakoya toolshaper", "chakoya tribewarden", "chakoya windcaller", "choking fear", "clay guardian", "clomp", "cobra", "coral frog", "corym charlatan", "corym skirmisher", "corym vanguard", "crab", "crazed beggar", "crazed summer rearguard", "crazed summer vanguard", "crazed winter rearguard", "crazed winter vanguard", "crimson frog", "crocodile", "crypt defiler", "crypt shambler", "crypt warden", "crystal spider", "crystalcrusher", "cult believer", "cult enforcer", "cult scholar", "cyclops", "cyclops drone", "cyclops smith", "dark apprentice", "dark faun", "dark magician", "dark monk", "dark torturer", "dawnfire asura", "death blob", "deathling scout", "deathling spellsinger", "deepling guard", "deepling scout", "deepling spellsinger", "deepling warrior", "deepling worker", "deepworm", "defiler", "demon outcast", "demon skeleton", "demon", "destroyer", "devourer", "diabolic imp", "diamond servant", "diremaw", "dragon hatchling", "dragon lord hatchling", "dragon lord", "dragon", "draken abomination", "draken elite", "draken spellweaver", "draken warmaster", "dread intruder", "drillworm", "dwarf geomancer", "dwarf guard", "dwarf henchman", "dwarf soldier", "dwarf", "dworc fleshhunter", "dworc venomsniper", "dworc voodoomaster", "earth elemental", "efreet", "elder bonelord", "elder wyrm", "elephant", "elf arcanist", "elf scout", "elf", "emerald damselfly", "energetic book", "energy elemental", "enfeebled silencer", "enlightened of the cult", "enraged crystal golem", "eternal guardian", "falcon knight", "falcon paladin", "faun", "fire devil", "fire elemental", "firestarter", "forest fury", "fox", "frazzlemaw", "frost dragon hatchling", "frost dragon", "frost flower asura", "fury", "gargoyle", "gazer spectre", "ghastly dragon", "ghost", "ghoul", "giant spider", "gladiator", "gloom wolf", "glooth bandit", "glooth blob", "glooth brigand", "glooth golem", "gnarlhound", "guzzlemaw", "hand of cursed fate", "haunted treeling", "hellhound", "hellflayer", "hellfire fighter", "hellspawn", "hero", "honour guard", "hunter", "hydra", "ice golem", "ice witch", "infernalist", "juggernaut", "killer caiman", "kongra", "lancer beetle", "lamassu", "lich", "lizard chosen", "lizard dragon priest", "lizard high guard", "lizard legionnaire", "lizard sentinel", "lizard snakecharmer", "lizard templar", "lizard zaogun", "lost soul", "lumbering carnivor", "mad scientist", "mammoth", "marid", "marsh stalker", "medusa", "menacing carnivor", "mercury blob", "merlkin", "metal gargoyle", "midnight asura", "minotaur amazon", "minotaur archer", "minotaur cult follower", "minotaur cult prophet", "minotaur cult zealot", "minotaur guard", "minotaur hunter", "minotaur mage", "minotaur", "monk", "mooh'tah warrior", "moohtant", "mummy", "mutated bat", "mutated human", "mutated rat", "mutated tiger", "necromancer", "nightmare scion", "nightmare", "nightstalker", "nomad", "novice of the cult ", "nymph", "omnivora", "orc berserker", "orc leader", "orc rider", "orc shaman", "orc warlord", "orc warrior", "orc", "pirate buccaneer", "pirate corsair", "pirate cutthroat", "pirate ghost", "pirate marauder", "pirate skeleton", "pixie", "plaguesmith", "priestess", "pooka", "ravenous lava lurker", "renegade knight", "retching horror", "ripper spectre", "roaring lion", "rot elemental", "rotworm", "rustheap golem", "scarab", "scorpion", "sea serpent", "serpent spawn", "sibang", "silencer", "skeleton elite warrior", "souleater", "spectre", "spiky carnivor", "stone golem", "stonerefiner", "swamp troll", "tarantula", "terramite", "thornback tortoise", "toad", "tortoise", "twisted pooka", "undead elite gladiator", "undead gladiator", "valkyrie", "vampire bride", "vampire viscount", "vampire", "vexclaw", "vicious squire", "vile grandmaster", "vulcongra", "wailing widow", "war golem", "war wolf", "warlock", "wasp", "water elemental", "weakened frazzlemaw", "werebadger", "werebear", "wereboar", "werefox", "werewolf", "worm priestess", "wolf", "wyrm", "wyvern", "yielothax", "young sea serpent", "zombie", "adult goanna", "black sphinx acolyte", "burning gladiator", "cobra assassin", "cobra scout", "cobra vizier", "crypt warden", "feral sphinx", "lamassu", "manticore", "ogre rowdy", "ogre ruffian", "ogre sage", "priestess of the wild sun", "sphinx", "sun-marked goanna", "young goanna", "cursed prospector", "evil prospector", "flimsy lost soul", "freakish lost soul", "mean lost soul", "a shielded astral glyph", "abyssador", "an astral glyph", "ascending ferumbras", "annihilon", "apocalypse", "apprentice sheng", "arachir the ancient one", "armenius", "azerus", "barbaria", "baron brute", "battlemaster zunzu", "bazir", "big boss trolliver", "bones", "boogey", "bretzecutioner", "brokul", "bruise payne", "brutus bloodbeard", "bullwark", "chizzoron the distorter", "coldheart", "countess sorrow", "deadeye devious", "deathbine", "deathstrike", "demodras", "dharalion", "diblis the fair", "dirtbeard", "diseased bill", "diseased dan", "diseased fred", "doomhowl", "dracola", "dreadwing", "ekatrix", "energized raging mage", "esmeralda", "ethershreck", "evil mastermind", "fatality", "fazzrah", "fernfang", "feroxa", "ferumbras", "flameborn", "fleshcrawler", "fleshslicer", "fluffy", "foreman kneebiter", "freegoiz", "fury of the emperor", "furyosa", "gaz'haragoth", "general murius", "ghazbaran", "glitterscale", "gnomevil", "golgordan", "grand mother foulscale", "groam", "grorlam", "gorgo", "hairman the huge", "haunter", "hellgorak", "hemming", "heoni", "hide", "hirintror", "horadron", "horestis", "incineron", "infernatil", "inky", "jaul", "kerberos", "koshei the deathless", "kraknaknork's demon", "kraknaknork", "kroazur", "latrivan", "lethal lissy", "leviathan", "lisa", "lizard abomination", "lord of the elements", "mad mage", "mad technomancer", "madareth", "man in the cave", "massacre", "mawhawk", "menace", "mephiles", "minishabaal", "monstor", "morgaroth", "morik the gladiator", "mr. punish", "munster", "mutated zalamon", "necropharus", "obujos", "orshabaal", "paiz the pauperizer", "raging mage", "ribstride", "rocko", "ron the ripper", "rottie the rotworm", "rotworm queen", "scarlett etzel", "scorn of the emperor", "shardhead", "sharptooth", "sir valorcrest", "snake god essence", "snake thing", "spider queen", "spite of the emperor", "splasher", "stonecracker", "sulphur scuttler", "tanjis", "terofar", "teleskor", "the abomination", "the axeorcist", "the blightfather", "the bloodtusk", "the bloodweb", "the book of death", "the collector", "the count", "the weakened count", "the dreadorian", "the evil eye", "the frog prince", "the handmaiden", "the horned fox", "the keeper", "the imperor", "the many", "the noxious spawn", "the old widow", "the pale count", "the plasmother", "the snapper", "the distorted astral source", "the astral source", "thul", "tiquandas revenge", "tirecz", "tyrn", "tormentor", "tremorak", "tromphonyte", "ungreez", "ushuriel", "verminor", "versperoth", "warlord ruzad", "white pale", "wrath of the emperor", "xenia", "yaga the crone", "yakchal", "zanakeph", "zavarash", "zevelon duskbringer", "zomba", "zoralurk", "zugurosh", "zushuka", "zulazza the corruptor", "glooth bomb", "bibby bloodbath", "doctor perhaps", "mooh'tah master", "the welter"
);
// Use guild logo system
$config['use_guild_logos'] = true;
// Use country flags
$config['country_flags'] = array(
'enabled' => true,
'highscores' => true,
'onlinelist' => true,
'characterprofile' => true,
'server' => 'http://flag.znote.eu'
);
// Show outfits
$config['show_outfits'] = array(
'shop' => true,
'highscores' => true,
'characterprofile' => true,
'onlinelist' => true,
// Image server may be unreliable and only for test,
// host yourself: https://otland.net/threads/item-images-10-92.242492/
'imageServer' => 'https://outfit-images.ots.me/animatedOutfits1099/animoutfit.php'
);
// Show advanced inventory data in character profile
$config['EQ_shower'] = array(
'enabled' => true,
'equipment' => true,
'skills' => true,
'outfits' => true,
// Player storage (storage_value + outfitId)
// used to see if player has outfit.
// see Lua scripts folder for otserv code
'storage_value' => 10000
);
// Level requirement to create guild? (Just set it to 1 to allow all levels).
$config['create_guild_level'] = 8;
// Change Gender can be purchased in shop, or perhaps you want to allow everyone to change gender for free?
$config['free_sex_change'] = false;
// Do you need to have premium account to create a guild?
$config['guild_require_premium'] = true;
// There is a TFS 1.3 bug related to guild nicks
// https://github.com/otland/forgottenserver/issues/2561
// So if your using TFS 1.x, you might need to disable guild nicks until the crash has been fixed.
$config['guild_allow_nicknames'] = true;
$config['guildwar_enabled'] = false;
// Use htaccess rewrite? (basically this makes website.com/username work instead of website.com/characterprofile.php?name=username
// Linux users needs to enable mod_rewrite php extention to make it work properly, so set it to false if your lost and using Linux.
$config['htwrite'] = true;
// What client version and server port are you using on this OT?
// Used for the Downloads page.
$config['client'] = 1098; // 954 = client 9.54
// Download link to client.
$config['client_download'] = 'http://tibiaclient.otslist.eu/download/tibia'. $config['client'] .'.exe';
$config['client_download_linux'] = 'http://tibiaclient.otslist.eu/download/tibia'. $config['client'] .'.tgz';
$config['port'] = 7171; // Port number to connect to your OT.
$config['status'] = array(
'status_check' => false, // Enable or disable status checker
'status_ip' => '127.0.0.1',
'status_port' => "7171",
);
// Gameserver info is used for client 11+ loginWebService
$config['login_web_service'] = true; // loginWebService for client 11+ enabled?
$config['gameserver'] = array(
'ip' => '127.0.0.1',
'port' => 7172,
'name' => 'Forgotten' // Must be identical to config.lua (OT config file) server name.
);
// Unlock all protocol 12 client features? Free premium in config.lua? Then set this to true.
$config['freePremium'] = true;
// How often do you want highscores (cache) to update?
$config['cache'] = array(
// If you have two instances installed on same server, make each instance prefix unique
'prefix' => 'znote_',
// 60 * 15; // 15 minutes.
'lifespan' => 5,
// Store cache in memory/RAM? Requires PHP extension APCu
'memory' => true
);
// WARNING! Account names written here will have admin access to web page!
$config['page_admin_access'] = array(
'firstaccountName',
'secondaccountName',
);
// Built-in FORUM
// Enable forum, enable guildboards, level to create threads/post in them
// How long do they have to wait to create thread or post?
// How to design/display hidden/closed/sticky threads.
$config['forum'] = array(
'enabled' => true,
'outfit_avatars' => true, // Show character outfit as forum avatar?
'player_position' => true, // Show character position? ex: Tutor, Community Manager, God
'guildboard' => true,
'level' => 5,
'cooldownPost' => 1, // 60,
'cooldownCreate' => 1, // 180,
'newPostsBumpThreads' => true,
'hidden' => '<font color="orange">[H]</font>',
'closed' => '<font color="red">[C]</font>',
'sticky' => '<font color="green">[S]</font>',
);
// Guilds and guild war pages will do lots of queries on bigger databases.
// So its recommended to require login to view them, but you can disable this
// If you don't have any problems with load.
$config['require_login'] = array(
'guilds' => false,
'guildwars' => false,
);
// IMPORTANT! Write a character name(that exist) that will represent website bans!
// Or remember to create character named "God Website".
// If you don't do this, ban from admin panel won't work properly.
$config['website_char'] = 'God Website';
// ---------------- \\
// ADVANCED STUFF \\
// ---------------- \\
// API config
$config['api'] = array(
'debug' => false,
);
// website.com/gallery.php
// website.com/admin_gallery.php
// we use imgur as image host, and need to register app with them and add client/secret id.
// https://github.com/Znote/ZnoteAAC/wiki/IMGUR-powered-Gallery-page
$config['gallery'] = array(
'Client Name' => 'ZnoteAAC-Gallery',
'Client ID' => '4dfcdc4f2cabca6',
'Client Secret' => '697af737777c99a8c0be07c2f4419aebb2c48ac5'
);
// Email Server configurations (SMTP)
/* Please consider using a released stable version of PHPMailer or you may run into issues.
Download PHPMailer: https://github.com/PHPMailer/PHPMailer/releases
Extract to Znote AAC directory (where this config.php file is located)
Rename the folder to "PHPMailer". Then configure this with your SMTP mail settings from your email provider.
*/
$config['mailserver'] = array(
'register' => false, // Send activation mail
'accountRecovery' => false, // Recover username or password through mail
'myaccount_verify_email' => false, // Allow user to verify their email in myaccount page
'verify_email_points' => 0, // 0 = disabled. Give users points reward for verifying their email
'host' => "mailserver.znote.eu", // Outgoing mail server host.
'securityType' => 'ssl', // ssl or tls
'port' => 465, // SMTP port number - likely to be 465(ssl) or 587(tls)
'email' => '[email protected]',
'username' => '[email protected]', // Likely the same as email
'password' => 'emailpassword', // The password.
'debug' => false, // Enable debugging if you have problems and are looking for errors.
'fromName' => $config['site_title'],
);
// Don't touch this unless you know what you are doing. (modifying these (key value) also requires modifications in OT files data/XML/groups.xml).
$config['ingame_positions'] = array(
1 => 'Player',
2 => 'Tutor',
3 => 'Senior Tutor',
4 => 'Gamemaster',
5 => 'Community Manager',
6 => 'God',
);
// Enable OS advanced features? false = no, true = yes
$config['os_enabled'] = false;
// What kind of computer are you hosting this website on?
// Available options: LINUX or WINDOWS
$config['os'] = ZNOTE_OS; // Use 'ZNOTE_OS' to auto-detect
// Measure how much players are lagging in-game. (Not completed).
$config['ping'] = false;
// BAN STUFF - Don't touch this unless you know what you are doing.
// You can order the lines the way you want, from top to bottom, in which order you
// wish for them to be displayed in admin panel. Just make sure key[#] represent your description.
$config['ban_type'] = array(
4 => 'NOTATION_ACCOUNT',
2 => 'NAMELOCK_PLAYER',
3 => 'BAN_ACCOUNT',
5 => 'DELETE_ACCOUNT',
1 => 'BAN_IPADDRESS',
);
// BAN STUFF - Don't touch this unless you know what you are doing.
// You can order the lines the way you want, from top to bot, in which order you
// wish for them to be displayed in admin panel. Just make sure key[#] represent your description.
$config['ban_action'] = array(
0 => 'Notation',
1 => 'Name Report',
2 => 'Banishment',
3 => 'Name Report + Banishment',
4 => 'Banishment + Final Warning',
5 => 'NR + Ban + FW',
6 => 'Statement Report',
);
// Ban reasons, for changes beside default values to work with client,
// you also need to edit sources (https://github.com/otland/forgottenserver/blob/master/src/enums.h#L29)
$config['ban_reason'] = array(
0 => 'Offensive Name',
1 => 'Invalid Name Format',
2 => 'Unsuitable Name',
3 => 'Name Inciting Rule Violation',
4 => 'Offensive Statement',
5 => 'Spamming',
6 => 'Illegal Advertising',
7 => 'Off-Topic Public Statement',
8 => 'Non-English Public Statement',
9 => 'Inciting Rule Violation',
10 => 'Bug Abuse',
11 => 'Game Weakness Abuse',
12 => 'Using Unofficial Software to Play',
13 => 'Hacking',
14 => 'Multi-Clienting',
15 => 'Account Trading or Sharing',
16 => 'Threatening Gamemaster',
17 => 'Pretending to Have Influence on Rule Enforcement',
18 => 'False Report to Gamemaster',
19 => 'Destructive Behaviour',
20 => 'Excessive Unjustified Player Killing',
21 => 'Spoiling Auction',
);
// BAN STUFF
// Ban time duration selection in admin panel
// seconds => description
$config['ban_time'] = array(
3600 => '1 hour',
21600 => '6 hours',
43200 => '12 hours',
86400 => '1 day',
259200 => '3 days',
604800 => '1 week',
1209600 => '2 weeks',
2592000 => '1 month',
);
// --------------- \\
// SECURITY STUFF \\
// --------------- \\
$config['use_token'] = false;
// Set up captcha keys on https://www.google.com/recaptcha/
$config['use_captcha'] = false;
$config['captcha_site_key'] = "Site key";
$config['captcha_secret_key'] = "Secret key";
$config['captcha_use_curl'] = false; // Set to false if you don't have cURL installed, otherwise set it to true
// Session prefix, if you are hosting multiple sites, make the session name different to avoid conflict.
$config['session_prefix'] = 'znote_';
/* Store visitor data
Store visitor data in the database, logging every IP visiting site,
and how many times they have visited the site. And sometimes what
they do on the site.
This helps to prevent POST SPAM (like register 1000 accounts in a few seconds)
and other things which can stress and slow down the server.
The only downside is that database can get pretty fed up with much IP data
if table never gets flushed once in a while. So I highly recommend you
to configure flush_ip_logs if IPs are logged.
*/
$config['log_ip'] = false;
// Flush IP logs each configured seconds, 60 * 15 = 15 minutes.
// Set to false to entirely disable ip log flush.
// It is important to flush for optimal performance.
$config['flush_ip_logs'] = 59 * 27;
/* IP SECURTY REQUIRE: $config['log_ip'] = true;
Configure how tight this security shall be.
Etc: You can max click on anything/refresh page
[max activity] 15 times, within time period 10
seconds. During time_period, you can also only
register 1 account and 1 character.
*/
$config['ip_security'] = array(
'time_period' => 10, // In seconds
'max_activity' => 10, // page clicks/visits
'max_post' => 6, // register, create, highscore, character search and such actions
'max_account' => 1, // register
'max_character' => 1, // create char
'max_forum_post' => 1, // create threads and post in forum
);
//////////////
/// PAYPAL ///
//////////////
// https://www.paypal.com/
// Write your paypal address here, and what currency you want to receive money in.
$config['paypal'] = array(
'enabled' => false,
'email' => '[email protected]', // Example: [email protected]
'currency' => 'EUR',
'points_per_currency' => 10, // 1 currency = ? points? [ONLY used to calculate bonuses]
'success' => "http://".$_SERVER['HTTP_HOST']."/success.php",
'failed' => "http://".$_SERVER['HTTP_HOST']."/failed.php",
'ipn' => "http://".$_SERVER['HTTP_HOST']."/ipn.php",
'showBonus' => true,
);
// Configure the "buy now" buttons prices, first write price, then how many points you get.
// Giving some bonus points for higher donations will tempt users to donate more.
$config['paypal_prices'] = array(
// price => points,
1 => 45, // -10% bonus
10 => 100, // 0% bonus
15 => 165, // +10% bonus
20 => 240, // +20% bonus
25 => 325, // +30% bonus
30 => 420, // +40% bonus
);
/////////////////
/// PAGSEGURO ///
/////////////////
// https://pagseguro.uol.com.br/
// Write your pagseguro address here, and what currency you want to receive money in.
$config['pagseguro'] = array(
'enabled' => false,
'sandbox' => false,
'email' => '[email protected]', // Example: [email protected]
'token' => '',
'currency' => 'BRL',
'product_name' => '',
'price' => 100, // 1 real
'ipn' => "http://".$_SERVER['HTTP_HOST']."/pagseguro_ipn.php",
'urls' => array(
'www' => 'pagseguro.uol.com.br',
'ws' => 'ws.pagseguro.uol.com.br',
'stc' => 'stc.pagseguro.uol.com.br'
)
);
if ($config['pagseguro']['sandbox']) {
$config['pagseguro']['urls'] = array_map(function ($item) {
return str_replace('pagseguro', 'sandbox.pagseguro', $item);
}, $config['pagseguro']['urls']);
}
//////////////////
/// PAYGOL SMS ///
//////////////////
// https://www.paygol.com/
// !!! Paygol takes 60%~ of the money, and send aprox 40% to your paypal.
// You can configure paygol to send each month, then they will send money
// to you 1 month after receiving 50+ eur.
$config['paygol'] = array(
'enabled' => false,
'serviceID' => 86648, // Service ID from paygol.com
'secretKey' => 'xxxx-xxxx-xxxx-xxxx', // Secret key from paygol.com. Never share your secret key
'currency' => 'SEK',
'price' => 20,
'points' => 20,
'name' => '20 points',
'returnURL' => "http://".$_SERVER['HTTP_HOST']."/success.php",
'cancelURL' => "http://".$_SERVER['HTTP_HOST']."/failed.php"
);
////////////
/// SHOP ///
////////////
// If useDB is set to true, player can shop in-game as well using Znote Lua shop system plugin.
$config['shop'] = array(
'enabled' => false,
'loginToView' => false, // Do user need to login to see the shop offers?
'enableShopConfirmation' => true, // Verify that user wants to buy with popup
'useDB' => false, // Fetch offers from database, or the below config array
'showImage' => true,
'imageServer' => 'items.znote.eu',
'imageType' => 'gif',
);
//////////
/// Let players sell, buy and bid on characters.
/// Creates a deeper shop economy, encourages players to spend more money in shop for points.
/// Pay to win/progress mechanic, but also lets people who can barely afford points to gain it
/// by leveling characters to sell. It can also discourages illegal/risky third-party account
/// services. Since players can buy officially & support the server, dodgy competitors have to sell for cheaper.
/// Without admin interference this is organic to each individual community economy inflation.
//////////
$config['shop_auction'] = array(
'characterAuction' => false, // Enable/disable this system
// Account ID of the account that stores players in the auction.
// Make sure storage account has a very secure password!
'storage_account_id' => 500000, // Separate secure account ID, not your GM.
'step' => 5, // Minimum amount someone can raise a bid by
'step_duration' => 1 * 60 * 60, // When bidding over someone else, extend bid period by 1 hour.
'lowestLevel' => 20, // Minimum level of sold character
'lowestPrice' => 10, // Lowest donation points a char can be sold for.
'biddingDuration' => 1 * 24 * 60 * 60, // = 1 day, 0 to disable bidding
'deposit' => 10 // Seller has to add 10=10% deposit to auction which he gets back later.
);
/*
type 1 = Items
type 2 = Premium days
type 3 = Change character gender
type 4 = Change character name
type 5 = Buy outfit (put outfit id as itemid),
(put addon id as count [0 = nothing, 1 = first addon, 2 = second addon, 3 = both addons])