-
Notifications
You must be signed in to change notification settings - Fork 221
/
config.lua
989 lines (986 loc) · 73.8 KB
/
config.lua
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
Config = Config or {}
Config.MinZOffset = 30
Config.RamsNeeded = 2
Config.UnownedBlips = false
Config.Houses = {}
Config.Targets = {}
Config.StashWeights = { -- Please follow by tiers!
[1] = {
maxweight = 1000000,
slots = 50,
}
}
Config.Furniture = {
sofas = {
label = 'Sofas',
items = {
{ object = 'miss_rub_couch_01', price = 300, label = 'Old couch' },
{ object = 'prop_fib_3b_bench', price = 700, label = 'Threesits couch' },
{ object = 'prop_ld_farm_chair01', price = 250, label = 'Old chair' },
{ object = 'prop_ld_farm_couch01', price = 300, label = 'Old treesits couch' },
{ object = 'prop_ld_farm_couch02', price = 300, label = 'Old striped couch' },
{ object = 'v_res_d_armchair', price = 300, label = 'Old 1 Seat Couch Yellow' },
{ object = 'v_res_fh_sofa', price = 3700, label = 'corner sofa' },
{ object = 'v_res_mp_sofa', price = 3700, label = 'corner sofa 2' },
{ object = 'v_res_d_sofa', price = 700, label = 'couch 1' },
{ object = 'v_res_j_sofa', price = 700, label = 'Couch 2' },
{ object = 'v_res_mp_stripchair', price = 700, label = 'Couch 3' },
{ object = 'v_res_m_h_sofa_sml', price = 700, label = 'Couch 4' },
{ object = 'v_res_r_sofa', price = 700, label = 'Couch 5' },
{ object = 'v_res_tre_sofa', price = 700, label = 'Couch 6' },
{ object = 'v_res_tre_sofa_mess_a', price = 700, label = 'Couch 7' },
{ object = 'v_res_tre_sofa_mess_b', price = 700, label = 'Couch 8' },
{ object = 'v_res_tre_sofa_mess_c', price = 700, label = 'Couch 9' },
{ object = 'v_res_tt_sofa', price = 700, label = 'Couch 10' },
{ object = 'prop_rub_couch02', price = 700, label = 'Couch 11' },
{ object = 'v_ilev_m_sofa', price = 2000, label = 'White Couch' },
{ object = 'v_med_p_sofa', price = 1000, label = 'Lether Couch Brown' },
{ object = 'v_club_officesofa', price = 500, label = 'pauper Couch rood' },
{ object = 'bkr_prop_clubhouse_sofa_01a', price = 1000, label = 'Black Couch' },
{ object = 'apa_mp_h_stn_sofacorn_01', price = 5000, label = 'corner sofa 3' },
{ object = 'prop_couch_lg_02', price = 1000, label = 'Couch hout' },
{ object = 'apa_mp_h_stn_sofacorn_10', price = 5000, label = 'corner sofa 4' },
{ object = 'apa_mp_h_yacht_sofa_02', price = 1000, label = 'Brown Couch' },
{ object = 'apa_mp_h_yacht_sofa_01', price = 5000, label = 'White long Couch' },
{ object = 'prop_couch_01', price = 1000, label = 'sofa cushions' },
{ object = 'prop_couch_03', price = 1000, label = 'sofa yellow' },
{ object = 'prop_couch_04', price = 1000, label = 'leather sofa cushions' },
{ object = 'prop_couch_lg_05', price = 500, label = 'sofa corduroy' },
{ object = 'prop_couch_lg_06', price = 1000, label = 'leather sofa brown 2' },
{ object = 'prop_couch_lg_07', price = 1000, label = 'sofa cushions 2' },
{ object = 'prop_couch_lg_08', price = 1000, label = 'leather sofa brown 3' },
{ object = 'prop_couch_sm1_07', price = 500, label = 'leather sofa corner' },
{ object = 'prop_couch_sm2_07', price = 500, label = 'leather sofa straight' },
{ object = 'prop_couch_sm_06', price = 500, label = 'leather sofa small' },
{ object = 'apa_mp_h_stn_sofa2seat_02', price = 1000, label = 'love seat' },
{ object = 'apa_mp_h_stn_sofacorn_05', price = 5000, label = 'corner sofa 5' },
{ object = 'apa_mp_h_stn_sofacorn_06', price = 5000, label = 'corner sofa 6' },
{ object = 'apa_mp_h_stn_sofacorn_07', price = 5000, label = 'corner sofa 7' },
{ object = 'apa_mp_h_stn_sofacorn_08', price = 5000, label = 'corner sofa 8' },
{ object = 'apa_mp_h_stn_sofacorn_09', price = 5000, label = 'corner sofa 9' },
{ object = 'ex_mp_h_off_sofa_003', price = 1000, label = 'sofa blue fabric' },
{ object = 'ex_mp_h_off_sofa_01', price = 1000, label = 'sofa white leather' },
{ object = 'ex_mp_h_off_sofa_02', price = 1000, label = 'sofa black leather' },
{ object = 'hei_heist_stn_sofa2seat_03', price = 1000, label = 'sofa modern' },
{ object = 'hei_heist_stn_sofa2seat_06', price = 1000, label = 'couch brown' },
{ object = 'hei_heist_stn_sofa3seat_01', price = 1000, label = 'chaise lounge' },
{ object = 'hei_heist_stn_sofa3seat_02', price = 1000, label = 'sofa modern 2' },
{ object = 'hei_heist_stn_sofa3seat_06', price = 1000, label = 'sofa modern 3' },
{ object = 'imp_prop_impexp_sofabed_01a', price = 1000, label = 'sofa bed' },
{ object = 'prop_t_sofa_02', price = 1000, label = 'sofa bed2' }
},
},
chairs = {
label = "Chair's",
items = {
{ object = 'v_res_d_highchair', price = 700, label = 'High chair' },
{ object = 'apa_mp_h_stn_chairstrip_03', price = 500, label = 'Sitchair 4' },
{ object = 'v_res_fa_chair01', price = 700, label = 'Chairl' },
{ object = 'v_res_fa_chair02', price = 700, label = 'Chair 2' },
{ object = 'v_res_fh_barcchair', price = 700, label = 'High chair 2' },
{ object = 'v_res_fh_dineeamesa', price = 700, label = 'Kitchen chair 1' },
{ object = 'v_res_fh_dineeamesb', price = 700, label = 'Kitchen chair 2' },
{ object = 'v_res_fh_dineeamesc', price = 700, label = 'Kitchen chair 3' },
{ object = 'v_res_fh_easychair', price = 700, label = 'Chair 3' },
{ object = 'v_res_fh_kitnstool', price = 700, label = 'Chair 4' },
{ object = 'v_res_fh_singleseat', price = 700, label = 'High chair 3' },
{ object = 'v_res_jarmchair', price = 700, label = 'Arm Chair' },
{ object = 'v_res_j_dinechair', price = 700, label = 'Kitchen chair 4' },
{ object = 'v_res_j_stool', price = 700, label = 'Chair 5' },
{ object = 'v_res_mbchair', price = 700, label = 'MB Chair' },
{ object = 'v_res_m_armchair', price = 700, label = 'Arm Chair 2' },
{ object = 'v_res_m_dinechair', price = 700, label = 'Kitchen chair 5' },
{ object = 'v_res_study_chair', price = 700, label = 'Study Chair' },
{ object = 'v_res_trev_framechair', price = 700, label = 'Chair frame' },
{ object = 'v_res_tre_chair', price = 700, label = 'Chair 5' },
{ object = 'v_res_tre_officechair', price = 700, label = 'officeChair' },
{ object = 'v_res_tre_stool', price = 700, label = 'Chair 6' },
{ object = 'v_res_tre_stool_leather', price = 700, label = 'Lether Chair' },
{ object = 'v_res_tre_stool_scuz', price = 700, label = 'Chair Scuz' },
{ object = 'v_med_p_deskchair', price = 700, label = 'DeskChair' },
{ object = 'v_med_p_easychair', price = 700, label = 'Easy Chair' },
{ object = 'v_med_whickerchair1', price = 700, label = 'Whicker Chair' },
{ object = 'prop_direct_chair_01', price = 700, label = 'Direct Chair' },
{ object = 'prop_direct_chair_02', price = 700, label = 'Direct Chair 2' },
{ object = 'prop_yacht_lounger', price = 700, label = 'Yacht Chair 1' },
{ object = 'prop_yacht_seat_01', price = 700, label = 'Yacht Chair 2' },
{ object = 'prop_yacht_seat_02', price = 700, label = 'Yacht Chair 3' },
{ object = 'prop_yacht_seat_03', price = 700, label = 'Yacht Chair 4' },
{ object = 'v_ret_chair_white', price = 100, label = 'White Chair' },
{ object = 'v_ret_chair', price = 100, label = 'Chair 7' },
{ object = 'v_ret_ta_stool', price = 100, label = 'TA Chair' },
{ object = 'prop_cs_office_chair', price = 100, label = 'office Chair 2' },
{ object = 'apa_mp_h_yacht_armchair_01', price = 1000, label = 'White fauteuil' },
{ object = 'v_club_barchair', price = 300, label = 'Chair 8' },
{ object = 'prop_off_chair_04', price = 300, label = 'Desk Chair 2' },
{ object = 'v_club_stagechair', price = 500, label = 'fauteuil roze' },
{ object = 'v_club_officechair', price = 500, label = 'Desk Chair 3' },
{ object = 'prop_armchair_01', price = 500, label = 'Sit chair' },
{ object = 'prop_bar_stool_01', price = 300, label = 'Barstool' },
{ object = 'apa_mp_h_yacht_stool_01', price = 300, label = 'White pouffe' },
{ object = 'apa_mp_h_stn_chairarm_12', price = 500, label = 'Sitchair 3' },
{ object = 'apa_mp_h_stn_chairstool_12', price = 300, label = 'Feet support' },
{ object = 'prop_chair_03', price = 100, label = 'Wooden Chair' },
{ object = 'prop_couch_sm_05', price = 500, label = 'corduroy armchair' },
{ object = 'prop_couch_sm_07', price = 300, label = 'white armchair 2' },
{ object = 'prop_couch_sm_02', price = 300, label = 'orange armchair' },
{ object = 'apa_mp_h_stn_sofa_daybed_01', price = 500, label = 'lounge chair' },
{ object = 'apa_mp_h_stn_sofa_daybed_02', price = 500, label = 'lounge chair 2' },
{ object = 'apa_mp_h_din_chair_04', price = 500, label = 'modern chair' },
{ object = 'apa_mp_h_din_chair_08', price = 500, label = 'modern chair 2' },
{ object = 'apa_mp_h_din_chair_09', price = 500, label = 'modern chair 3' },
{ object = 'apa_mp_h_din_chair_12', price = 500, label = 'modern chair 4' },
{ object = 'apa_mp_h_din_stool_04', price = 500, label = 'modern chair 5' },
{ object = 'apa_mp_h_stn_chairarm_01', price = 500, label = 'modern chair 6' },
{ object = 'apa_mp_h_stn_chairarm_02', price = 500, label = 'modern chair 7' },
{ object = 'apa_mp_h_stn_chairarm_03', price = 500, label = 'modern chair 8' },
{ object = 'apa_mp_h_stn_chairarm_09', price = 500, label = 'modern chair 9' },
{ object = 'apa_mp_h_stn_chairarm_11', price = 500, label = 'modern chair 10' },
{ object = 'apa_mp_h_stn_chairarm_13', price = 500, label = 'modern chair 11' },
{ object = 'apa_mp_h_stn_chairarm_24', price = 500, label = 'modern chair 12' },
{ object = 'apa_mp_h_stn_chairarm_25', price = 500, label = 'modern chair 13' },
{ object = 'apa_mp_h_stn_chairarm_26', price = 500, label = 'modern chair 14' },
{ object = 'apa_mp_h_stn_chairstrip_04', price = 500, label = 'modern chair 15' },
{ object = 'apa_mp_h_stn_chairstrip_05', price = 500, label = 'modern chair 16' },
{ object = 'apa_mp_h_stn_chairstrip_08', price = 500, label = 'modern chair 17' },
{ object = 'apa_mp_h_stn_foot_stool_01', price = 500, label = 'pouffe' },
{ object = 'apa_mp_h_stn_foot_stool_02', price = 500, label = 'pouffe 2' },
{ object = 'apa_mp_h_yacht_barstool_01', price = 500, label = 'barstool 2' },
{ object = 'ba_prop_int_glam_stool', price = 500, label = 'barstool 3' },
{ object = 'ba_prop_battle_club_chair_01', price = 500, label = 'office chair' },
{ object = 'ba_prop_battle_club_chair_02', price = 500, label = 'office chair 2' },
{ object = 'ba_prop_battle_club_chair_03', price = 500, label = 'office chair 3' },
{ object = 'ba_prop_battle_control_seat', price = 500, label = 'gaming chair' }
},
},
beds = {
label = 'Beds',
items = {
{ object = 'v_res_d_bed', price = 700, label = 'Bed 1' },
{ object = 'v_res_lestersbed', price = 700, label = 'Bed 2' },
{ object = 'v_res_mbbed', price = 700, label = 'MB Bed' },
{ object = 'v_res_mdbed', price = 700, label = 'MD Bed' },
{ object = 'v_res_msonbed', price = 700, label = 'Bed 3' },
{ object = 'v_res_tre_bed1', price = 700, label = 'Bed 4' },
{ object = 'v_res_tre_bed2', price = 700, label = 'T Bed' },
{ object = 'v_res_tt_bed', price = 700, label = 'TT Bed' },
{ object = 'apa_mp_h_bed_with_table_02', price = 5000, label = 'fancy bed' },
{ object = 'apa_mp_h_bed_wide_05', price = 5000, label = 'red bed' },
{ object = 'apa_mp_h_bed_double_08', price = 3000, label = 'square bed' },
{ object = 'apa_mp_h_bed_double_09', price = 3000, label = 'modern bed' },
{ object = 'apa_mp_h_yacht_bed_01', price = 5000, label = 'california king' },
{ object = 'apa_mp_h_yacht_bed_02', price = 5000, label = 'california king 2' },
{ object = 'bkr_prop_biker_campbed_01', price = 100, label = 'camp bed' },
{ object = 'ex_prop_exec_bed_01', price = 700, label = 'small bed' },
{ object = 'gr_prop_bunker_bed_01', price = 700, label = 'klein bed 2' },
{ object = 'p_mbbed_s', price = 700, label = 'Bed 5' }
},
},
general = {
label = 'General',
items = {
{ object = 'v_corp_facebeanbag', price = 100, label = 'Bean Bag 1' },
{ object = 'v_res_cherubvase', price = 2500, label = 'White Vase' },
{ object = 'v_res_d_paddedwall', price = 300, label = 'Padded Wall' },
{ object = 'v_res_d_ramskull', price = 300, label = 'Item' },
{ object = 'v_res_d_whips', price = 300, label = 'Whips' },
{ object = 'v_res_fashmag1', price = 300, label = 'Mags' },
{ object = 'v_res_fashmagopen', price = 300, label = 'Mags Open' },
{ object = 'v_res_fa_magtidy', price = 300, label = 'Mag Tidy' },
{ object = 'v_res_fa_yogamat002', price = 300, label = 'Yoga Mat 1' },
{ object = 'v_res_fa_yogamat1', price = 300, label = 'Yoga Mat 2' },
{ object = 'v_res_fh_aftershavebox', price = 300, label = 'Aftershave' },
{ object = 'v_res_fh_flowersa', price = 300, label = 'Flowers' },
{ object = 'v_res_fh_fruitbowl', price = 300, label = 'Fruitbowl' },
{ object = 'v_res_fh_laundrybasket', price = 300, label = 'Laundry Basket' },
{ object = 'v_res_fh_pouf', price = 300, label = 'Pouf' },
{ object = 'v_res_fh_sculptmod', price = 300, label = 'Sculpture' },
{ object = 'v_res_j_magrack', price = 300, label = 'Mag Rack' },
{ object = 'v_res_jewelbox', price = 300, label = 'Jewel Box' },
{ object = 'v_res_mbbin', price = 300, label = 'Bin' },
{ object = 'v_res_mbowlornate', price = 300, label = 'Ornate Bowl' },
{ object = 'v_res_mbronzvase', price = 300, label = 'Bronze Vase' },
{ object = 'v_res_mchalkbrd', price = 300, label = 'Chalk Board' },
{ object = 'v_res_mddresser', price = 300, label = 'Dresser' },
{ object = 'v_res_mplinth', price = 300, label = 'Linth' },
{ object = 'v_res_mp_ashtrayb', price = 300, label = 'Ashtray' },
{ object = 'v_res_m_candle', price = 300, label = 'Candle' },
{ object = 'v_res_m_candlelrg', price = 300, label = 'Candle Large' },
{ object = 'v_res_m_kscales', price = 300, label = 'Scales' },
{ object = 'v_res_tt_bedpillow', price = 300, label = 'Bed Pillow' },
{ object = 'v_med_cor_whiteboard', price = 300, label = 'whiteboard' },
{ object = 'prop_ashtray_01', price = 100, label = 'asbak black' },
{ object = 'v_ret_fh_ashtray', price = 100, label = 'asbak stone' },
{ object = 'v_24_wdr_mesh_rugs', price = 500, label = 'Rag' },
{ object = 'apa_mp_h_acc_rugwooll_04', price = 500, label = 'Rug 2' },
{ object = 'ex_mp_h_acc_rugwoolm_04', price = 500, label = 'Rug 3' },
{ object = 'apa_mp_h_acc_rugwoolm_03', price = 500, label = 'Rug 4' },
{ object = 'apa_mp_h_acc_rugwooll_03', price = 500, label = 'Rug 5' },
{ object = 'apa_mp_h_acc_rugwoolm_04', price = 500, label = 'Rug 6' },
{ object = 'v_club_rack', price = 500, label = 'kledingrek' }
},
},
general2 = {
label = 'Props',
items = {
{ object = 'prop_a4_pile_01', price = 100, label = 'A4 Pile' },
{ object = 'prop_amb_40oz_03', price = 100, label = '40 oz' },
{ object = 'prop_amb_beer_bottle', price = 100, label = 'Beer' },
{ object = 'prop_aviators_01', price = 100, label = 'Aviators' },
{ object = 'prop_barry_table_detail', price = 100, label = 'Detail' },
{ object = 'prop_beer_box_01', price = 100, label = 'Beers' },
{ object = 'prop_binoc_01', price = 100, label = 'Binoculars' },
{ object = 'prop_blox_spray', price = 100, label = 'Blox Spray' },
{ object = 'prop_bongos_01', price = 100, label = 'Bongos' },
{ object = 'prop_bong_01', price = 100, label = 'Bong' },
{ object = 'prop_boombox_01', price = 100, label = 'Boombox' },
{ object = 'prop_bowl_crisps', price = 100, label = 'Bowl Crisps' },
{ object = 'prop_candy_pqs', price = 100, label = 'Candy' },
{ object = 'prop_carrier_bag_01', price = 100, label = 'Carrier bag' },
{ object = 'prop_ceramic_jug_01', price = 100, label = 'Ceramic Jug' },
{ object = 'prop_cigar_pack_01', price = 100, label = 'Cigar Pack 1' },
{ object = 'prop_cigar_pack_02', price = 100, label = 'Cigar Pack 2' },
{ object = 'prop_cs_beer_box', price = 100, label = 'Beer Box 2' },
{ object = 'prop_cs_binder_01', price = 100, label = 'Binder' },
{ object = 'prop_cs_bs_cup', price = 100, label = 'Cup' },
{ object = 'prop_cs_cashenvelope', price = 100, label = 'Envelope' },
{ object = 'prop_cs_champ_flute', price = 100, label = 'Flute' },
{ object = 'prop_cs_duffel_01', price = 100, label = 'Duffel Bag' },
{ object = 'prop_cs_dvd', price = 50, label = 'DVD' },
{ object = 'prop_cs_dvd_case', price = 50, label = 'DVD Case' },
{ object = 'prop_cs_film_reel_01', price = 100, label = 'Film Reel' },
{ object = 'prop_cs_ilev_blind_01', price = 100, label = 'Blind' },
{ object = 'p_ld_bs_bag_01', price = 100, label = 'Bag' },
{ object = 'prop_cs_ironing_board', price = 100, label = 'Ironing Board' },
{ object = 'prop_cs_katana_01', price = 100, label = 'Katana' },
{ object = 'prop_cs_kettle_01', price = 100, label = 'Kettle' },
{ object = 'prop_cs_lester_crate', price = 100, label = 'Crate' },
{ object = 'prop_cs_petrol_can', price = 100, label = 'Petrol Can' },
{ object = 'prop_cs_sack_01', price = 100, label = 'Sack' },
{ object = 'prop_cs_script_bottle_01', price = 100, label = 'Script Bottle' },
{ object = 'prop_cs_script_bottle', price = 100, label = 'Script Bottle 2' },
{ object = 'prop_cs_street_binbag_01', price = 100, label = 'Bin Bag' },
{ object = 'prop_cs_whiskey_bottle', price = 100, label = 'Whiskey Bottle' },
{ object = 'prop_sh_bong_01', price = 100, label = 'Bong' },
{ object = 'prop_peanut_bowl_01', price = 100, label = 'Peanuts' },
{ object = 'prop_tumbler_01', price = 100, label = 'Tumbler' },
{ object = 'prop_weed_bottle', price = 100, label = 'Weed koker' },
{ object = 'p_cs_lighter_01', price = 100, label = 'Lighter' },
{ object = 'p_cs_papers_01', price = 100, label = 'Rolling papers' },
{ object = 'v_res_d_dildo_f', price = 100, label = 'dildo Black' },
{ object = 'v_res_d_dildo_c', price = 100, label = 'dildo white' },
{ object = 'v_res_d_dildo_a', price = 100, label = "Mommy's toy" },
{ object = 'prop_champ_cool', price = 100, label = 'Champagne cooler' },
{ object = 'prop_champ_01b', price = 100, label = 'champagnebottle' },
{ object = 'prop_champ_flute', price = 100, label = 'champagneglas' },
{ object = 'ba_prop_club_champset', price = 300, label = 'champagneset' },
{ object = 'v_res_fa_candle01', price = 100, label = 'candle blue' },
{ object = 'v_res_fa_candle02', price = 100, label = 'candle red' },
{ object = 'v_res_fa_candle03', price = 100, label = 'candle black' },
{ object = 'v_res_fa_candle04', price = 100, label = 'candle small' },
{ object = 'v_med_bottles2', price = 100, label = 'Chemicals' },
{ object = 'v_res_desktidy', price = 100, label = 'Office stuf' },
{ object = 'v_med_p_notebook', price = 100, label = "Note's" },
{ object = 'bkr_prop_weed_dry_01a', price = 100, label = 'mountain of weed' },
{ object = 'ba_prop_battle_trophy_battler', price = 100, label = 'fist trofee' },
{ object = 'ba_prop_battle_trophy_no1', price = 100, label = 'ster trofee' },
{ object = 'prop_golf_bag_01c', price = 100, label = 'Golf bag' },
{ object = 'hei_heist_kit_bin_01', price = 100, label = 'Garbage can' },
{ object = 'prop_wooden_barrel', price = 100, label = 'wooden vat' },
{ object = 'bkr_prop_bkr_cash_scatter_01', price = 100, label = 'scatter' },
{ object = 'bkr_prop_bkr_cashpile_01', price = 100, label = 'Cash' },
{ object = 'bkr_prop_bkr_cash_roll_01', price = 100, label = 'Cash roll' },
{ object = 'bkr_prop_bkr_cashpile_04', price = 100, label = 'pile of cash' },
{ object = 'bkr_prop_weed_bigbag_open_01a', price = 100, label = 'Weed open bag' },
{ object = 'bkr_prop_weed_bigbag_02a', price = 100, label = 'Weed bag 2' },
{ object = 'bkr_prop_weed_bigbag_03a', price = 100, label = 'Weed bag 3' },
{ object = 'bkr_prop_weed_scales_01a', price = 100, label = 'scales' },
{ object = 'bkr_prop_weed_smallbag_01a', price = 100, label = 'small bag' },
{ object = 'prop_gold_bar', price = 100, label = 'Gold Bar' },
{ object = 'beerrow_world', price = 100, label = 'beer bottles' },
{ object = 'beerrow_local', price = 100, label = 'beer bottles 2' },
{ object = 'p_cs_bbbat_01', price = 100, label = 'Bat' },
{ object = 'p_cs_cuffs_02_s', price = 100, label = 'handcuffs' },
{ object = 'p_cs_joint_02', price = 100, label = 'Joint' },
{ object = 'p_ing_coffeecup_01', price = 100, label = 'Coffee mug' },
{ object = 'p_tumbler_cs2_s', price = 100, label = 'Tumbler' },
{ object = 'prop_turkey_leg_01', price = 100, label = 'chicken leg' },
{ object = 'prop_amb_donut', price = 100, label = 'Donut' },
{ object = 'prop_donut_02', price = 100, label = 'Donut 2' },
{ object = 'prop_bar_shots', price = 100, label = 'Bar shots' },
{ object = 'prop_bar_stirrers', price = 100, label = 'Bar stirrers' },
{ object = 'prop_beer_amopen', price = 100, label = 'Beer open' },
{ object = 'prop_beer_blr', price = 100, label = 'Beer 1' },
{ object = 'prop_beer_logger', price = 100, label = 'Beer 2' },
{ object = 'prop_beer_stzopen', price = 100, label = 'Beer 3' },
{ object = 'prop_bikerset', price = 100, label = 'Biker Set' },
{ object = 'prop_bottle_brandy', price = 100, label = 'Bottle brandy' },
{ object = 'prop_tequila_bottle', price = 100, label = 'Tequila bottle' },
{ object = 'prop_tequila', price = 100, label = 'Tequila' },
{ object = 'prop_bottle_cognac', price = 100, label = 'Bottle of Cognac' },
{ object = 'prop_bottle_macbeth', price = 100, label = 'Bottle of Macbeth' },
{ object = 'prop_brandy_glass', price = 100, label = 'Brandy Glass' },
{ object = 'prop_mug_01', price = 100, label = 'Mug 1' },
{ object = 'prop_mug_02', price = 100, label = 'Mug 2' },
{ object = 'prop_mug_03', price = 100, label = 'Mug 3' },
{ object = 'prop_optic_vodka', price = 100, label = 'Vodka' },
{ object = 'prop_optic_jd', price = 100, label = 'JD' },
{ object = 'prop_pint_glass_01', price = 100, label = 'Pint Glass' },
{ object = 'prop_pizza_box_03', price = 100, label = 'Pizza box' },
{ object = 'prop_sandwich_01', price = 100, label = 'Sandwich' },
{ object = 'prop_cava', price = 100, label = 'Cava' },
{ object = 'prop_drink_redwine', price = 100, label = 'Red wine' },
{ object = 'vodkarow', price = 100, label = 'Vodka Row' },
{ object = 'prop_cherenkov_02', price = 100, label = 'Cherenkov' },
{ object = 'prop_cherenkov_03', price = 100, label = 'Cherenkov 2' },
{ object = 'prop_cocktail_glass', price = 100, label = 'Cocktail glass' },
{ object = 'prop_cs_bottle_opener', price = 100, label = 'Fles opener' },
{ object = 'prop_food_bs_chips', price = 100, label = 'Chips' },
{ object = 'prop_cs_burger_01', price = 100, label = 'Burger' },
{ object = 'prop_cs_hand_radio', price = 100, label = 'Hand radio' },
{ object = 'prop_cs_hotdog_01', price = 100, label = 'Hotdog' },
{ object = 'prop_cs_milk_01', price = 100, label = 'Milk' },
{ object = 'prop_cs_panties', price = 100, label = 'Panties' },
{ object = 'prop_cs_steak', price = 100, label = 'Meat' }
},
},
general3 = {
label = 'Random',
items = {
{ object = 'v_ret_csr_bin', price = 100, label = 'CSR Bin' },
{ object = 'v_ret_fh_wickbskt', price = 100, label = 'Basket' },
{ object = 'v_ret_gc_bag01', price = 100, label = 'GC Bag 1' },
{ object = 'v_ret_gc_bag02', price = 100, label = 'GC Bag 2' },
{ object = 'v_ret_gc_bin', price = 100, label = 'GC Bin' },
{ object = 'v_ret_gc_cashreg', price = 100, label = 'Cash Register' },
{ object = 'v_ret_gc_chair01', price = 100, label = 'GC Chair 01' },
{ object = 'v_ret_gc_chair02', price = 100, label = 'GC Chair 02' },
{ object = 'v_ret_gc_clock', price = 100, label = 'Clock' },
{ object = 'v_ret_hd_prod1_', price = 100, label = 'Prod 1' },
{ object = 'v_ret_hd_prod2_', price = 100, label = 'Prod 2' },
{ object = 'v_ret_hd_prod3_', price = 100, label = 'Prod 3' },
{ object = 'v_ret_hd_prod4_', price = 100, label = 'Prod 4' },
{ object = 'v_ret_hd_prod5_', price = 100, label = 'Prod 5' },
{ object = 'v_ret_hd_prod6_', price = 100, label = 'Prod 6' },
{ object = 'v_ret_hd_unit1_', price = 100, label = 'HD Unit 1' },
{ object = 'v_ret_hd_unit2_', price = 100, label = 'HD Unit 2' },
{ object = 'v_ret_ml_fridge02', price = 100, label = 'Fridge' },
{ object = 'v_ret_ps_bag_01', price = 100, label = 'Bag 1' },
{ object = 'v_ret_ps_bag_02', price = 100, label = 'Bag 2' },
{ object = 'v_ret_ta_book1', price = 100, label = 'Book 1' },
{ object = 'v_ret_ta_book2', price = 100, label = 'Book 2' },
{ object = 'v_ret_ta_book3', price = 100, label = 'Book 3' },
{ object = 'v_ret_ta_book4', price = 100, label = 'Book 4' },
{ object = 'v_ret_ta_camera', price = 100, label = 'Cam' },
{ object = 'v_ret_ta_firstaid', price = 100, label = 'First Aid' },
{ object = 'v_ret_ta_hero', price = 100, label = 'Hero' },
{ object = 'v_ret_ta_mag1', price = 100, label = 'Mag 1' },
{ object = 'v_ret_ta_mag2', price = 100, label = 'Mag 2' },
{ object = 'v_ret_ta_skull', price = 100, label = 'Skull' },
{ object = 'prop_acc_guitar_01', price = 100, label = 'Guitar' },
{ object = 'prop_amb_handbag_01', price = 100, label = 'Handbag' },
{ object = 'prop_attache_case_01', price = 100, label = 'Case' },
{ object = 'prop_big_bag_01', price = 100, label = 'Big Bag' },
{ object = 'prop_bonesaw', price = 100, label = 'Bonesaw' },
{ object = 'prop_cs_fertilizer', price = 100, label = 'Fertilizer' },
{ object = 'prop_cs_shopping_bag', price = 100, label = 'Shopping Bag' },
{ object = 'prop_cs_vial_01', price = 100, label = 'Vial' },
{ object = 'prop_defilied_ragdoll_01', price = 100, label = 'Ragdoll' },
{ object = 'v_res_fa_book03', price = 100, label = 'boek kamasutra' },
{ object = 'prop_weight_rack_02', price = 500, label = 'dumbbellrek' },
{ object = 'prop_weight_bench_02', price = 500, label = 'Couchdrukset' },
{ object = 'prop_tool_broom', price = 100, label = 'Broom' },
{ object = 'prop_fire_exting_2a', price = 100, label = 'Fire extinguisher' },
{ object = 'v_res_vacuum', price = 100, label = 'vacuum cleaner' },
{ object = 'v_ret_gc_fan', price = 100, label = 'Fan' },
{ object = 'prop_paint_stepl01b', price = 100, label = 'ladder' },
{ object = 'bkr_prop_weed_bucket_01b', price = 100, label = 'Fertilizer' },
{ object = 'v_club_vusnaketank', price = 500, label = 'terrarium' },
{ object = 'prop_pooltable_02', price = 1500, label = 'poolTable' },
{ object = 'prop_pool_rack_02', price = 100, label = 'poolcues' },
{ object = 'v_club_vu_deckcase', price = 1000, label = 'dj set' },
{ object = 'v_corp_servercln', price = 1000, label = 'serverrack' }
},
},
general4 = {
label = 'Random 2',
items = {
{ object = 'prop_dummy_01', price = 100, label = 'Dummy' },
{ object = 'prop_egg_clock_01', price = 100, label = 'Egg Clock' },
{ object = 'prop_el_guitar_01', price = 100, label = 'E Guitar 1' },
{ object = 'prop_el_guitar_02', price = 100, label = 'E Guitar 2' },
{ object = 'prop_el_guitar_03', price = 100, label = 'E Guitar 2' },
{ object = 'prop_feed_sack_01', price = 100, label = 'Feed Sack' },
{ object = 'prop_floor_duster_01', price = 100, label = 'Floor Duster' },
{ object = 'prop_fruit_basket', price = 100, label = 'Fruit Basket' },
{ object = 'prop_f_duster_02', price = 100, label = 'Duster' },
{ object = 'prop_grapes_02', price = 100, label = 'Grapes' },
{ object = 'prop_hotel_clock_01', price = 100, label = 'Hotel Clock' },
{ object = 'prop_idol_case_01', price = 100, label = 'Idol Case' },
{ object = 'prop_jewel_02a', price = 100, label = 'Jewels' },
{ object = 'prop_jewel_02b', price = 100, label = 'Jewels' },
{ object = 'prop_jewel_02c', price = 100, label = 'Jewels' },
{ object = 'prop_jewel_03a', price = 100, label = 'Jewels' },
{ object = 'prop_jewel_03b', price = 100, label = 'Jewels' },
{ object = 'prop_jewel_04a', price = 100, label = 'Jewels' },
{ object = 'prop_jewel_04b', price = 100, label = 'Jewels' },
{ object = 'prop_j_disptray_01', price = 100, label = 'Display Tray' },
{ object = 'prop_j_disptray_01b', price = 100, label = 'Display Tray' },
{ object = 'prop_j_disptray_02', price = 100, label = 'Display Tray' },
{ object = 'prop_j_disptray_03', price = 100, label = 'Display Tray' },
{ object = 'prop_j_disptray_04', price = 100, label = 'Display Tray' },
{ object = 'prop_j_disptray_04b', price = 100, label = 'Display Tray' },
{ object = 'prop_j_disptray_05', price = 100, label = 'Display Tray' },
{ object = 'prop_j_disptray_05b', price = 100, label = 'Display Tray' },
{ object = 'prop_ld_greenscreen_01', price = 100, label = 'Green Screen' },
{ object = 'prop_ld_handbag', price = 100, label = 'Handbag' },
{ object = 'prop_ld_jerrycan_01', price = 100, label = 'Jerry Can' },
{ object = 'prop_ld_keypad_01', price = 100, label = 'Keypad 1' },
{ object = 'prop_ld_keypad_01b', price = 100, label = 'Keypad 2' },
{ object = 'prop_ld_suitcase_01', price = 100, label = 'Suitcase 1' },
{ object = 'prop_ld_suitcase_02', price = 100, label = 'Suitcase 2' },
{ object = 'hei_p_attache_case_shut', price = 100, label = 'Suitcase 3' },
{ object = 'prop_mr_rasberryclean', price = 100, label = 'Rasberry Clean' },
{ object = 'prop_paper_bag_01', price = 100, label = 'Paper Bag' },
{ object = 'prop_shopping_bags01', price = 100, label = 'Shopping Bags' },
{ object = 'prop_shopping_bags02', price = 100, label = 'Shopping Bags 2' },
{ object = 'prop_yoga_mat_01', price = 100, label = 'Yoga Mat 1' },
{ object = 'prop_yoga_mat_02', price = 100, label = 'Yoga Mat 2' },
{ object = 'prop_yoga_mat_03', price = 100, label = 'Yoga Mat 3' },
{ object = 'p_ld_sax', price = 100, label = 'Sax' },
{ object = 'p_ld_soc_ball_01', price = 100, label = 'SOCCER Ball' },
{ object = 'p_watch_01', price = 100, label = 'Watch 1' },
{ object = 'p_watch_02', price = 100, label = 'Watch 2' },
{ object = 'p_watch_03', price = 100, label = 'Watch 3' },
{ object = 'p_watch_04', price = 100, label = 'Watch 4' },
{ object = 'p_watch_05', price = 100, label = 'Watch 5' },
{ object = 'p_watch_06', price = 100, label = 'Watch 6' },
{ object = 'apa_mp_h_acc_candles_01', price = 100, label = 'candle' },
{ object = 'apa_mp_h_acc_candles_02', price = 100, label = 'candle 2' },
{ object = 'apa_mp_h_acc_candles_04', price = 100, label = 'candle 3' },
{ object = 'apa_mp_h_acc_candles_06', price = 100, label = 'candle 4' },
{ object = 'apa_mp_h_acc_fruitbowl_02', price = 100, label = 'fruit bowl' },
{ object = 'apa_mp_h_acc_tray_01', price = 100, label = 'thingies' },
{ object = 'prop_bskball_01', price = 100, label = 'Basketball' },
{ object = 'prop_cs_wrench', price = 100, label = 'Wrench' },
{ object = 'prop_cs_bowie_knife', price = 100, label = 'Bowie Knife' },
{ object = 'prop_w_me_hatchet', price = 100, label = 'Hatchet' }
},
},
small = {
label = 'Details',
items = {
{ object = 'v_res_r_figcat', price = 300, label = 'Fig Cat' },
{ object = 'v_res_r_figclown', price = 300, label = 'Fig Clown' },
{ object = 'v_res_r_figauth2', price = 300, label = 'Fig Auth' },
{ object = 'v_res_r_figfemale', price = 300, label = 'Fig Female' },
{ object = 'v_res_r_figflamenco', price = 300, label = 'Fig Flamenco' },
{ object = 'v_res_r_figgirl', price = 300, label = 'Fig Girl' },
{ object = 'v_res_r_figgirlclown', price = 300, label = 'Fig Girl Clown' },
{ object = 'v_res_r_figoblisk', price = 300, label = 'Fig Oblisk' },
{ object = 'v_res_r_figpillar', price = 300, label = 'Fig Pillar' },
{ object = 'v_res_r_teapot', price = 300, label = 'Teapot' },
{ object = 'v_res_sculpt_dec', price = 300, label = 'Sculpture 1' },
{ object = 'v_res_sculpt_decd', price = 300, label = 'Sculpture 2' },
{ object = 'v_res_sculpt_dece', price = 300, label = 'Sculpture 3' },
{ object = 'v_res_sculpt_decf', price = 300, label = 'Sculpture 4' },
{ object = 'v_res_skateboard', price = 300, label = 'Skateboard' },
{ object = 'v_res_sketchpad', price = 300, label = 'Sketchpad' },
{ object = 'v_res_tissues', price = 300, label = 'Tissues' },
{ object = 'v_res_tre_basketmess', price = 300, label = 'Basket' },
{ object = 'v_res_tre_bin', price = 300, label = 'Bin' },
{ object = 'v_res_tre_cushiona', price = 300, label = 'Cushion 1' },
{ object = 'v_res_tre_cushionb', price = 300, label = 'Cushion 2' },
{ object = 'v_res_tre_cushionc', price = 300, label = 'Cushion 3' },
{ object = 'v_res_tre_cushiond', price = 300, label = 'Cushion 4' },
{ object = 'v_res_tre_cushnscuzb', price = 300, label = 'Cushion 5' },
{ object = 'v_res_tre_cushnscuzd', price = 300, label = 'Cushion 6' },
{ object = 'v_res_tre_fruitbowl', price = 300, label = 'Fruitbowl' },
{ object = 'v_med_p_sideboard', price = 300, label = 'Sideboard' },
{ object = 'prop_idol_01', price = 100, label = 'Idol 1' },
{ object = 'v_res_r_fighorsestnd', price = 300, label = 'Figurine black horse' },
{ object = 'v_res_r_fighorse', price = 300, label = 'Figurine big horse' },
{ object = 'v_res_r_figdancer', price = 300, label = 'Figurine dancer' },
{ object = 'v_res_fa_idol02', price = 300, label = 'olifanten Figurine' },
{ object = 'v_res_m_statue', price = 300, label = 'Sculpture' },
{ object = 'v_20_ornaeagle', price = 300, label = 'Figurine adelaar' },
{ object = 'v_med_p_vaseround', price = 300, label = 'Fase round' },
{ object = 'ex_mp_h_acc_vase_05', price = 300, label = 'Fase Violet' },
{ object = 'apa_mp_h_acc_dec_head_01', price = 300, label = 'Art work' },
{ object = 'apa_mp_h_acc_dec_sculpt_02', price = 300, label = 'Art work 2' },
{ object = 'ex_mp_h_acc_dec_plate_02', price = 300, label = 'Art work 3' },
{ object = 'apa_mp_h_acc_bowl_ceramic_01', price = 300, label = 'schaal' },
{ object = 'apa_mp_h_acc_dec_plate_01', price = 300, label = 'Scale 2' },
{ object = 'apa_mp_h_acc_vase_01', price = 300, label = 'vase black and white' },
{ object = 'apa_mp_h_acc_vase_02', price = 300, label = 'vase red' },
{ object = 'apa_mp_h_acc_vase_05', price = 300, label = 'vase' },
{ object = 'apa_mp_h_acc_vase_06', price = 300, label = 'vase black and white 2' }
},
},
storage = {
label = 'Storage',
items = {
{ object = 'v_res_cabinet', price = 2500, label = 'Cabinet Large' },
{ object = 'v_res_d_dressingtable', price = 2500, label = 'Dressing Table' },
{ object = 'v_res_d_sideunit', price = 2500, label = 'Side Unit' },
{ object = 'v_res_fh_sidebrddine', price = 2500, label = 'Side Unit' },
{ object = 'v_res_fh_sidebrdlngb', price = 2500, label = 'Side Unit' },
{ object = 'v_res_mbbedtable', price = 2500, label = 'Bed Unit' },
{ object = 'v_res_j_tvstand', price = 2500, label = 'Tv Unit' },
{ object = 'v_res_mbdresser', price = 2500, label = 'Dresser Unit' },
{ object = 'v_res_mbottoman', price = 2500, label = 'Bottoman Unit' },
{ object = 'v_res_mconsolemod', price = 2500, label = 'Console Unit' },
{ object = 'v_res_mcupboard', price = 2500, label = 'Cupboard Unit' },
{ object = 'v_res_mdchest', price = 2500, label = 'Chest Unit' },
{ object = 'v_res_msoncabinet', price = 2500, label = 'Mason Unit' },
{ object = 'v_res_m_armoire', price = 2500, label = 'Armoire Unit' },
{ object = 'v_res_m_sidetable', price = 2500, label = 'Side Unit' },
{ object = 'v_res_son_desk', price = 2500, label = 'Desk Unit' },
{ object = 'v_res_tre_bedsidetable', price = 2500, label = 'Side Unit' },
{ object = 'v_res_tre_bedsidetableb', price = 2500, label = 'Side Unit 2' },
{ object = 'v_res_tre_smallbookshelf', price = 2500, label = 'Book Unit' },
{ object = 'v_res_tre_storagebox', price = 2500, label = 'Box Unit' },
{ object = 'v_res_tre_storageunit', price = 2500, label = 'Storage Unit' },
{ object = 'v_res_tre_wardrobe', price = 2500, label = 'Wardrobe Unit' },
{ object = 'v_res_tre_wdunitscuz', price = 2500, label = 'Wood Unit' },
{ object = 'prop_devin_box_closed', price = 100, label = 'Bean Bag 1' },
{ object = 'prop_mil_crate_01', price = 100, label = 'Mil Crate 1' },
{ object = 'prop_mil_crate_02', price = 100, label = 'Mil Crate 2' },
{ object = 'prop_ld_int_safe_01', price = 1100, label = 'Safe' },
{ object = 'prop_toolchest_05', price = 5000, label = 'Crafting Bench' },
{ object = 'v_corp_filecablow', price = 500, label = 'Filing cabinet Low' },
{ object = 'v_corp_filecabtall', price = 500, label = 'Filing cabinet High' },
{ object = 'apa_mp_h_str_shelffloorm_02', price = 500, label = 'Large modern cupboard' },
{ object = 'v_ilev_frnkwarddr1', price = 500, label = 'Cupboard franklin' },
{ object = 'prop_coathook_01', price = 100, label = 'Coat rack' },
{ object = 'v_corp_lowcabdark01', price = 500, label = 'Filing cabinetLow black' },
{ object = 'v_corp_tallcabdark01', price = 500, label = 'Filing cabinet High black' },
{ object = 'v_corp_cabshelves01', price = 1000, label = 'Filing cabinet black' },
{ object = 'v_corp_offshelf', price = 1000, label = 'Filing cabinet groot' },
{ object = 'v_61_lng_mesh_unitc', price = 500, label = 'Bookcase white' },
{ object = 'ba_wardrobe', price = 500, label = 'kledingkast' },
{ object = 'apa_mp_h_str_sideboardl_06', price = 750, label = 'Cupboard modern' },
{ object = 'apa_mp_h_str_sideboardl_09', price = 750, label = 'Cupboard modern 2' },
{ object = 'apa_mp_h_str_shelfwallm_01', price = 750, label = 'Bookcase 2' },
{ object = 'apa_mp_h_str_sideboardl_11', price = 750, label = 'Cupboard modern 3' },
{ object = 'imp_prop_impexp_parts_rack_03a', price = 750, label = 'car parts' },
{ object = 'imp_prop_impexp_parts_rack_04a', price = 750, label = 'car parts 2' },
{ object = 'imp_prop_impexp_parts_rack_05a', price = 750, label = 'car parts 3' },
{ object = 'apa_mp_h_bed_chestdrawer_02', price = 750, label = 'chest of drawers' },
{ object = 'hei_heist_bed_chestdrawer_04', price = 750, label = 'chest of drawers 2' },
{ object = 'prop_rub_cabinet', price = 50, label = 'rusted filing cabinet' },
{ object = 'prop_tv_cabinet_03', price = 750, label = 'tv little cupboard' },
{ object = 'prop_tv_cabinet_04', price = 750, label = 'tv little cupboard 2' },
{ object = 'prop_tv_cabinet_05', price = 750, label = 'tv little cupboard 3' },
{ object = 'apa_mp_h_str_shelffreel_01', price = 750, label = 'ikea closet' },
{ object = 'apa_mp_h_str_sideboardl_13', price = 750, label = 'cabinet modern 4' },
{ object = 'apa_mp_h_str_sideboardl_14', price = 750, label = 'cabinet modern 5' },
{ object = 'apa_mp_h_str_sideboardm_02', price = 750, label = 'cabinet modern 6' },
{ object = 'bkr_prop_biker_garage_locker_01', price = 750, label = 'Biker Locker' },
{ object = 'gr_prop_gr_bench_04b', price = 750, label = 'Biker Bench' }
},
},
electronics = {
label = 'Electronics',
items = {
{ object = 'prop_trailr_fridge', price = 300, label = 'Old Fridge' },
{ object = 'v_res_fh_speaker', price = 300, label = 'Speaker' },
{ object = 'v_res_fh_speakerdock', price = 300, label = 'Speaker Dock' },
{ object = 'v_res_fh_bedsideclock', price = 300, label = 'Bedside Clock' },
{ object = 'v_res_fa_phone', price = 300, label = 'Phone' },
{ object = 'v_res_fh_towerfan', price = 300, label = 'Tower Fan' },
{ object = 'v_res_fa_fan', price = 300, label = 'Fan' },
{ object = 'v_res_lest_bigscreen', price = 300, label = 'Bigscreen' },
{ object = 'v_res_lest_monitor', price = 300, label = 'Monitor' },
{ object = 'v_res_tre_mixer', price = 300, label = 'Mixer' },
{ object = 'prop_cs_cctv', price = 100, label = 'CCTV' },
{ object = 'prop_ld_lap_top', price = 100, label = 'Laptop' },
{ object = 'prop_ld_monitor_01', price = 100, label = 'Monitor' },
{ object = 'prop_speaker_05', price = 500, label = 'mounted speaker' },
{ object = 'prop_tv_flat_03b', price = 1000, label = 'kleine flatscreen' },
{ object = 'prop_laptop_01a', price = 750, label = 'Open laptop' },
{ object = 'prop_tv_flat_michael', price = 3000, label = 'flatscreen hanging ing' },
{ object = 'prop_dyn_pc', price = 1000, label = 'pc' },
{ object = 'prop_keyboard_01b', price = 100, label = 'Keybord' },
{ object = 'prop_mouse_01b', price = 100, label = 'Computer mouse' },
{ object = 'v_ret_gc_phone', price = 100, label = 'office phone' },
{ object = 'prop_tv_flat_01', price = 5000, label = 'Big flatscreen' },
{ object = 'prop_arcade_01', price = 5000, label = 'arcade' },
{ object = 'prop_console_01', price = 250, label = 'gameconsole' },
{ object = 'v_res_tre_dvdplayer', price = 250, label = 'dvd Player' },
{ object = 'prop_speaker_08', price = 500, label = 'wooden speaker' },
{ object = 'prop_cctv_mon_02', price = 300, label = 'cctv monitor' },
{ object = 'prop_tv_flat_02', price = 2500, label = 'flatscreen Standing' },
{ object = 'prop_cctv_cam_01a', price = 300, label = 'cctv 2' },
{ object = 'prop_dest_cctv_02', price = 300, label = 'cctv monitor 2' },
{ object = 'prop_cctv_cam_07a', price = 300, label = 'cctv 3' },
{ object = 'apa_mp_h_str_avunits_04', price = 5500, label = 'flatscreen meubel' },
{ object = 'apa_mp_h_str_avunits_01', price = 5500, label = 'flatscreen meubel 2' },
{ object = 'v_club_vu_deckcase', price = 1000, label = 'dj set' },
{ object = 'v_corp_servercln', price = 1000, label = 'serverrack' },
{ object = 'apa_mp_h_str_avunitl_01_b', price = 5500, label = 'flat screen furniture 3' },
{ object = 'apa_mp_h_str_avunitl_04', price = 5500, label = 'flat screen furniture 4' },
{ object = 'apa_mp_h_str_avunitm_01', price = 5500, label = 'flat screen furniture 5' },
{ object = 'apa_mp_h_str_avunitm_03', price = 5500, label = 'flat screen furniture 6' },
{ object = 'apa_mp_h_str_avunits_04', price = 5500, label = 'flat screen furniture 7' },
{ object = 'v_res_printer', price = 300, label = 'printer' },
{ object = 'apa_mp_h_acc_phone_01', price = 100, label = 'old fashioned telephone' },
{ object = 'v_res_mousemat', price = 300, label = 'mouse pad' },
{ object = 'v_res_pcheadset', price = 300, label = 'headset' },
{ object = 'v_res_pcspeaker', price = 300, label = 'PC speaker' },
{ object = 'ba_prop_battle_club_speaker_small', price = 500, label = 'small box' },
{ object = 'ba_prop_battle_club_speaker_med', price = 750, label = 'box' },
{ object = 'ba_prop_battle_club_speaker_large', price = 1000, label = 'big box' },
{ object = 'v_res_pcspeaker', price = 300, label = 'PC speaker' },
{ object = 'v_res_pcwoofer', price = 300, label = 'PC subwoofer' },
{ object = 'prop_controller_01', price = 300, label = 'Controller' },
{ object = 'prop_cs_remote_01', price = 300, label = 'Remote control' },
{ object = 'prop_portable_hifi_01', price = 300, label = 'Radio' },
{ object = 'prop_dj_deck_02', price = 300, label = 'DJ table' },
{ object = 'prop_speaker_01', price = 300, label = 'Speaker' }
},
},
lighting = {
label = 'Lighting',
items = {
{ object = 'v_corp_cd_desklamp', price = 100, label = 'Desk Corp Lamp' },
{ object = 'v_res_desklamp', price = 100, label = 'Desk Lamp' },
{ object = 'v_res_d_lampa', price = 100, label = 'Lamp AA' },
{ object = 'v_res_fa_lamp1on', price = 100, label = 'Lamp 1' },
{ object = 'v_res_fh_floorlamp', price = 100, label = 'Floor Lamp' },
{ object = 'v_res_fh_lampa_on', price = 100, label = 'Lamp 2' },
{ object = 'v_res_j_tablelamp1', price = 100, label = 'Table Lamp' },
{ object = 'v_res_j_tablelamp2', price = 100, label = 'Table Lamp 2' },
{ object = 'v_res_mdbedlamp', price = 100, label = 'Bed Lamp' },
{ object = 'v_res_mplanttongue', price = 100, label = 'Plant Tongue Lamp' },
{ object = 'v_res_mtblelampmod', price = 100, label = 'Table Lamp 3' },
{ object = 'v_res_m_lampstand', price = 100, label = 'Lamp Stand' },
{ object = 'v_res_m_lampstand2', price = 100, label = 'Lamp Stand 2' },
{ object = 'v_res_m_lamptbl', price = 100, label = 'Table Lamp 4' },
{ object = 'v_res_tre_lightfan', price = 100, label = 'Light Fan' },
{ object = 'v_res_tre_talllamp', price = 100, label = 'Tall Lamp' },
{ object = 'v_ret_fh_walllighton', price = 100, label = 'Wall Light' },
{ object = 'v_ret_gc_lamp', price = 100, label = 'GC Lamp' },
{ object = 'prop_dummy_light', price = 100, label = 'Flickering Light' },
{ object = 'prop_ld_cont_light_01', price = 100, label = 'Side Wall Light' },
{ object = 'V_44_D_emis', price = 100, label = 'Test Light' },
{ object = 'prop_wall_light_07a', price = 100, label = 'lantaarn' },
{ object = 'prop_wall_light_01a', price = 100, label = 'Cheap lamp' },
{ object = 'v_serv_tu_light2_', price = 100, label = 'industrieel licht' },
{ object = 'v_serv_tu_light3_', price = 100, label = 'industrieel licht2' },
{ object = 'ba_prop_battle_lights_ceiling_l_a', price = 300, label = 'hanging lamp' },
{ object = 'v_med_p_floorlamp', price = 300, label = 'Big lamp' },
{ object = 'v_club_vu_lamp', price = 100, label = 'Smal lamp' },
{ object = 'ba_prop_battle_lights_wall_l_a', price = 100, label = 'Wall lamp' },
{ object = 'ba_prop_battle_lights_ceiling_l_c', price = 300, label = 'hanging lamp 2' },
{ object = 'ba_prop_battle_lights_ceiling_l_b', price = 300, label = 'kroonluchter 2' },
{ object = 'ba_prop_battle_lights_wall_l_c', price = 100, label = 'Wall lamp 2' },
{ object = 'ba_prop_battle_lights_wall_l_b', price = 100, label = 'Wall lamp 3' },
{ object = 'hei_heist_lit_lightpendant_02', price = 300, label = 'hanging lamp 3' },
{ object = 'prop_oldlight_01b', price = 100, label = 'wall lamp 4' },
{ object = 'apa_mp_h_lit_floorlampnight_07', price = 100, label = 'blue lamp' },
{ object = 'apa_mp_h_ceiling_light_01', price = 100, label = 'commercial' },
{ object = 'apa_mp_h_ceiling_light_01_day', price = 100, label = 'commercial 2' },
{ object = 'apa_mp_h_ceiling_light_02', price = 100, label = 'ceiling light' },
{ object = 'apa_mp_h_ceiling_light_02_day', price = 100, label = 'ceiling light 2' },
{ object = 'ba_prop_battle_lights_ceiling_l_d', price = 100, label = 'commercial 3' },
{ object = 'ba_prop_battle_lights_ceiling_l_f', price = 100, label = 'ceiling light 3' },
{ object = 'ba_prop_battle_lights_ceiling_l_e', price = 100, label = 'ceiling light 4' },
{ object = 'apa_mp_h_floorlamp_a', price = 100, label = 'floor lamp' },
{ object = 'apa_mp_h_floorlamp_b', price = 100, label = 'floor lamp 2' },
{ object = 'apa_mp_h_floorlamp_c', price = 100, label = 'floor lamp 3' },
{ object = 'apa_mp_h_floor_lamp_int_08', price = 100, label = 'floor lamp 4' },
{ object = 'apa_mp_h_lampbulb_multiple_a', price = 100, label = 'ceiling light 5' },
{ object = 'apa_mp_h_lit_floorlamp_02', price = 100, label = 'floor lamp 5' },
{ object = 'apa_mp_h_lit_floorlampnight_14', price = 100, label = 'floor lamp 6' },
{ object = 'apa_mp_h_lit_floorlamp_03', price = 100, label = 'floor lamp 7' },
{ object = 'apa_mp_h_lit_floorlamp_06', price = 100, label = 'floor lamp 8' },
{ object = 'apa_mp_h_lit_floorlamp_10', price = 100, label = 'floor lamp 9' },
{ object = 'apa_mp_h_lit_floorlamp_13', price = 100, label = 'floor lamp 10' },
{ object = 'apa_mp_h_lit_floorlamp_17', price = 100, label = 'floor lamp 11' },
{ object = 'apa_mp_h_lit_lamptablenight_16', price = 100, label = 'night light' },
{ object = 'apa_mp_h_lit_lamptablenight_24', price = 100, label = 'night light 2' },
{ object = 'apa_mp_h_lit_lamptable_005', price = 100, label = 'night light 3' },
{ object = 'apa_mp_h_lit_lamptable_04', price = 100, label = 'night light 4' },
{ object = 'apa_mp_h_lit_lamptable_09', price = 100, label = 'night light 5' },
{ object = 'apa_mp_h_lit_lamptable_14', price = 100, label = 'night light 6' },
{ object = 'apa_mp_h_lit_lamptable_17', price = 100, label = 'night light 7' },
{ object = 'apa_mp_h_yacht_table_lamp_01', price = 100, label = 'night light 8' }
},
},
tables = {
label = 'Tables',
items = {
{ object = 'v_res_d_coffeetable', price = 500, label = 'Coffee Table 1' },
{ object = 'v_res_d_roundtable', price = 500, label = 'Round Table' },
{ object = 'v_res_d_smallsidetable', price = 500, label = 'Small Side Table' },
{ object = 'v_res_fh_coftablea', price = 500, label = 'Table A' },
{ object = 'v_res_fh_coftableb', price = 500, label = 'Table B' },
{ object = 'v_res_fh_coftbldisp', price = 500, label = 'Table C' },
{ object = 'v_res_fh_diningtable', price = 500, label = 'Dining Table' },
{ object = 'v_res_j_coffeetable', price = 500, label = 'Coffee Table 2' },
{ object = 'v_res_j_lowtable', price = 500, label = 'Low Table' },
{ object = 'v_res_mdbedtable', price = 500, label = 'Bed Table' },
{ object = 'v_res_mddesk', price = 500, label = 'Desk' },
{ object = 'v_res_msidetblemod', price = 500, label = 'Side Table' },
{ object = 'v_res_m_console', price = 500, label = 'Console Table' },
{ object = 'v_res_m_dinetble_replace', price = 500, label = 'Dining Table 2' },
{ object = 'v_res_m_h_console', price = 500, label = 'Console H Table' },
{ object = 'v_res_m_stool', price = 500, label = 'Stool?' },
{ object = 'v_res_tre_sideboard', price = 500, label = 'Sideboard Table' },
{ object = 'v_res_tre_table2', price = 500, label = 'Table 2' },
{ object = 'v_res_tre_tvstand', price = 500, label = 'Tv Table' },
{ object = 'v_res_tre_tvstand_tall', price = 500, label = 'Tv Table Tall' },
{ object = 'v_med_p_coffeetable', price = 500, label = 'Med Coffee Table' },
{ object = 'v_med_p_desk', price = 500, label = 'Med Desk' },
{ object = 'prop_yacht_table_01', price = 100, label = 'Yacht Table 1' },
{ object = 'prop_yacht_table_02', price = 100, label = 'Yacht Table 2' },
{ object = 'prop_yacht_table_03', price = 100, label = 'Yacht Table 3' },
{ object = 'v_ret_csr_table', price = 100, label = 'CSR Table' },
{ object = 'v_res_mconsoletrad', price = 250, label = 'high side table' },
{ object = 'v_ilev_liconftable_sml', price = 500, label = 'Office tabel' },
{ object = 'v_ret_tablesml', price = 350, label = 'Side table marillaux' },
{ object = 'apa_mp_h_yacht_coffee_table_02', price = 500, label = 'koffie table Brown' },
{ object = 'apa_mp_h_yacht_side_table_01', price = 300, label = 'Side table Brown' },
{ object = 'apa_mp_h_yacht_side_table_02', price = 300, label = 'ronde Side table' },
{ object = 'apa_mp_h_tab_sidelrg_04', price = 300, label = 'ronde Side table 2' },
{ object = 'v_club_vu_table', price = 300, label = 'Coverd Table' },
{ object = 'apa_mp_h_tab_sidelrg_07', price = 500, label = 'koffieTable glas' },
{ object = 'bkr_prop_weed_table_01b', price = 100, label = 'clapTable' },
{ object = 'ba_prop_int_trad_table', price = 300, label = 'Stand Table' },
{ object = 'apa_mp_h_str_sideboards_02', price = 750, label = 'Side table glas' },
{ object = 'apa_mp_h_yacht_coffee_table_01', price = 750, label = 'koffieTable modern' },
{ object = 'apa_mp_h_din_table_04', price = 1000, label = 'dinner Table glas' },
{ object = 'xm_prop_base_staff_desk_01', price = 5000, label = 'desk + setup' },
{ object = 'apa_mp_h_tab_coffee_07', price = 1000, label = 'triangular side table' },
{ object = 'apa_mp_h_tab_coffee_08', price = 1000, label = 'white side table' },
{ object = 'apa_mp_h_tab_sidelrg_01', price = 1000, label = 'glass side table' },
{ object = 'apa_mp_h_tab_sidelrg_02', price = 1000, label = 'glass side table 2' },
{ object = 'apa_mp_h_tab_sidesml_01', price = 1000, label = 'folding table' },
{ object = 'ba_prop_int_edgy_table_01', price = 500, label = 'table marble' },
{ object = 'ba_prop_int_edgy_table_02', price = 500, label = 'table marble high' },
{ object = 'apa_mp_h_tab_sidelrg_01', price = 1000, label = 'glass side table' },
{ object = 'xm_prop_lab_desk_01', price = 1000, label = 'lab table' }
},
},
plants = {
label = 'Plants',
items = {
{ object = 'prop_fib_plant_01', price = 150, label = 'Plant Fib' },
{ object = 'v_corp_bombplant', price = 170, label = 'Plant Bomb' },
{ object = 'v_res_mflowers', price = 170, label = 'Plant Flowers' },
{ object = 'v_res_mvasechinese', price = 170, label = 'Plant Chinese' },
{ object = 'v_res_m_bananaplant', price = 170, label = 'Plant Banana' },
{ object = 'v_res_m_palmplant1', price = 170, label = 'Plant Palm' },
{ object = 'v_res_m_palmstairs', price = 170, label = 'Plant Palm 2' },
{ object = 'v_res_m_urn', price = 170, label = 'Plant Urn' },
{ object = 'v_res_rubberplant', price = 170, label = 'Plant Rubber' },
{ object = 'v_res_tre_plant', price = 170, label = 'Plant' },
{ object = 'v_res_tre_tree', price = 170, label = 'Plant Tree' },
{ object = 'v_med_p_planter', price = 170, label = 'Planter' },
{ object = 'v_ret_flowers', price = 100, label = 'Flowers' },
{ object = 'v_ret_j_flowerdisp', price = 100, label = 'Flowers 1' },
{ object = 'v_ret_j_flowerdisp_white', price = 100, label = 'Flowers 2' },
{ object = 'v_res_m_vasefresh', price = 300, label = 'FlowerFase' },
{ object = 'v_res_rosevasedead', price = 300, label = 'Pink Fase 2' },
{ object = 'v_res_exoticvase', price = 300, label = 'FlowerFase 2' },
{ object = 'v_res_rosevase', price = 300, label = 'Pink Fase' },
{ object = 'prop_pot_plant_6a', price = 300, label = 'Hanging ende plant' },
{ object = 'prop_pot_plant_02a', price = 300, label = 'Flower pot' },
{ object = 'apa_mp_h_acc_plant_palm_01', price = 300, label = 'palm plant' },
{ object = 'prop_plant_interior_05a', price = 300, label = 'flower box' },
{ object = 'prop_plant_int_01a', price = 300, label = 'plant' },
{ object = 'prop_plant_int_01b', price = 300, label = 'plant 2' },
{ object = 'prop_plant_int_02a', price = 300, label = 'plant 3' },
{ object = 'prop_plant_int_02b', price = 300, label = 'plant 4' },
{ object = 'prop_plant_int_03a', price = 300, label = 'plant 5' },
{ object = 'prop_plant_int_03b', price = 300, label = 'plant 6' },
{ object = 'prop_plant_int_03c', price = 300, label = 'plant 7' },
{ object = 'prop_plant_int_04a', price = 300, label = 'plant 8' },
{ object = 'prop_plant_int_04c', price = 300, label = 'plant 9' },
{ object = 'prop_plant_int_05b', price = 300, label = 'flower box 2' },
{ object = 'prop_pot_plant_01a', price = 300, label = 'plant pot 2' },
{ object = 'prop_pot_plant_01b', price = 300, label = 'plant pot 3' },
{ object = 'prop_pot_plant_01c', price = 300, label = 'plant pot 4' },
{ object = 'prop_pot_plant_01d', price = 300, label = 'plant pot 5' },
{ object = 'prop_pot_plant_01e', price = 300, label = 'plant pot 6' },
{ object = 'prop_pot_plant_03b', price = 300, label = 'plant pot 7' },
{ object = 'prop_pot_plant_05a', price = 300, label = 'plant pot 8' },
{ object = 'prop_pot_plant_05b', price = 300, label = 'plant pot 9' },
{ object = 'p_int_jewel_plant_01', price = 300, label = 'plant pot 10' },
{ object = 'p_int_jewel_plant_02', price = 300, label = 'plant pot 11' },
{ object = 'apa_mp_h_acc_vase_flowers_01', price = 300, label = 'plant pot 12' },
{ object = 'apa_mp_h_acc_vase_flowers_02', price = 300, label = 'plant pot 13' },
{ object = 'apa_mp_h_acc_vase_flowers_03', price = 300, label = 'plant pot 14' },
{ object = 'apa_mp_h_acc_vase_flowers_04', price = 300, label = 'plant pot 15' }
},
},
kitchen = {
label = 'Kitchen',
items = {
{ object = 'prop_washer_01', price = 150, label = 'Washer 1' },
{ object = 'prop_washer_02', price = 150, label = 'Washer 2' },
{ object = 'prop_washer_03', price = 150, label = 'Washer 3' },
{ object = 'prop_washing_basket_01', price = 150, label = 'Washing Basket' },
{ object = 'v_res_fridgemoda', price = 150, label = 'Fridge 1' },
{ object = 'v_res_fridgemodsml', price = 150, label = 'Fridge 2' },
{ object = 'prop_fridge_01', price = 150, label = 'Fridge 3' },
{ object = 'prop_fridge_03', price = 150, label = 'Fridge 4' },
{ object = 'prop_cooker_03', price = 150, label = 'Cooker' },
{ object = 'prop_micro_01', price = 150, label = 'Microwave 1' },
{ object = 'prop_micro_02', price = 150, label = 'Microwave 2' },
{ object = 'prop_wok', price = 150, label = 'Wok' },
{ object = 'v_res_cakedome', price = 150, label = 'Cake Plate' },
{ object = 'v_res_fa_chopbrd', price = 150, label = 'Chopping Board' },
{ object = 'v_res_mutensils', price = 150, label = 'Utensils' },
{ object = 'v_res_pestle', price = 150, label = 'Pestle' },
{ object = 'v_ret_ta_paproll', price = 150, label = 'PaperRoll 1' },
{ object = 'v_ret_ta_paproll2', price = 150, label = 'PaperRoll 2' },
{ object = 'v_ret_fh_pot01', price = 150, label = 'Pot 1' },
{ object = 'v_ret_fh_pot02', price = 150, label = 'Pot 2' },
{ object = 'v_ret_fh_pot05', price = 150, label = 'Pot 3' },
{ object = 'prop_pot_03', price = 150, label = 'Pot 4' },
{ object = 'prop_pot_04', price = 150, label = 'Pot 5' },
{ object = 'prop_pot_05', price = 150, label = 'Pot 6' },
{ object = 'prop_pot_06', price = 150, label = 'Pot 7' },
{ object = 'prop_pot_rack', price = 150, label = 'Pot Rack' },
{ object = 'prop_kitch_juicer', price = 150, label = 'Juicer' },
{ object = 'v_res_ovenhobmod', price = 1000, label = 'Stove' },
{ object = 'v_res_mkniferack', price = 100, label = 'Knive' },
{ object = 'v_res_mchopboard', price = 100, label = 'Cutting plank' },
{ object = 'prop_cs_kitchen_cab_l', price = 750, label = 'Kitchen Cupboard Wide' },
{ object = 'prop_cs_kitchen_cab_r', price = 500, label = 'Kitchen cupboard smal' },
{ object = 'prop_cs_kitchen_cab_r', price = 500, label = 'Kitchen cupboard smal' },
{ object = 'v_res_tre_fridge', price = 500, label = 'refrigerator' },
{ object = 'apa_mp_h_acc_coffeemachine_01', price = 500, label = 'coffee machine' },
{ object = 'p_new_j_counter_02', price = 500, label = 'Counter' },
{ object = 'prop_bar_pump_09', price = 500, label = 'Pump 1' },
{ object = 'prop_bar_pump_01', price = 500, label = 'Pump 2' },
{ object = 'prop_chip_fryer', price = 500, label = 'Chips fryer' },
{ object = 'prop_cleaver', price = 500, label = 'Knife' },
{ object = 'prop_coffee_mac_02', price = 500, label = 'coffee machine' },
{ object = 'prop_coffee_mac_01', price = 500, label = 'coffee machine 2' },
{ object = 'prop_cs_fork', price = 500, label = 'Fork' },
{ object = 'prop_cs_sink_filler', price = 500, label = 'Sink filler' },
{ object = 'prop_toaster_01', price = 500, label = 'Toaster' },
{ object = 'prop_cs_plate_01', price = 500, label = 'Plate' },
{ object = 'prop_foodprocess_01', price = 500, label = 'Food Process' },
{ object = 'prop_food_sugarjar', price = 500, label = 'Sugar Bowl' },
{ object = 'prop_juice_dispenser', price = 500, label = 'Dispencer' },
{ object = 'prop_knife_stand', price = 500, label = 'Knife holder' },
{ object = 'prop_knife', price = 500, label = 'Knife 2' },
{ object = 'prop_micro_04', price = 500, label = 'Microwave 4' },
{ object = 'v_ret_fh_plate3', price = 500, label = 'Plate 5' },
{ object = 'v_ilev_tt_plate01', price = 500, label = 'Plate 6' },
{ object = 'v_res_fa_grater', price = 500, label = 'Grater' },
{ object = 'v_res_tt_pizzaplate', price = 500, label = 'Pizza Plate' },
{ object = 'v_ret_247_ketchup2', price = 500, label = 'Ketchup' }
},
},
bathroom = {
label = 'Bathroom',
items = {
{ object = 'prop_ld_toilet_01', price = 100, label = 'Toilet 1' },
{ object = 'prop_toilet_01', price = 100, label = 'Toilet 2' },
{ object = 'prop_toilet_02', price = 100, label = 'Toilet 3' },
{ object = 'prop_sink_02', price = 100, label = 'Sink 1' },
{ object = 'prop_sink_04', price = 100, label = 'Sink 2' },
{ object = 'prop_sink_05', price = 100, label = 'Sink 3' },
{ object = 'prop_sink_06', price = 100, label = 'Sink 4' },
{ object = 'prop_soap_disp_01', price = 100, label = 'Soap Dispenser' },
{ object = 'prop_shower_rack_01', price = 100, label = 'Shower Rack' },
{ object = 'prop_handdry_01', price = 100, label = 'Hand Dryer 1' },
{ object = 'prop_handdry_02', price = 100, label = 'Hand Dryer 2' },
{ object = 'prop_towel_rail_01', price = 100, label = 'Towel Rail 1' },
{ object = 'prop_towel_rail_02', price = 100, label = 'Towel Rail 2' },
{ object = 'prop_towel_01', price = 100, label = 'Towel 1' },
{ object = 'v_res_mbtowel', price = 100, label = 'Towel 2' },
{ object = 'v_res_mbtowelfld', price = 100, label = 'Towel 3' },
{ object = 'v_res_mbath', price = 100, label = 'Bath' },
{ object = 'v_res_mbsink', price = 100, label = 'Sink' },
{ object = 'v_ilev_mm_faucet', price = 100, label = 'tap' },
{ object = 'v_res_tre_washbasket', price = 250, label = 'Washing mand' },
{ object = 'prop_toilet_soap_02', price = 100, label = 'Tray Soap' },
{ object = 'prop_bar_sink_01', price = 100, label = 'Sink' },
{ object = 'apa_mp_h_bathtub_01', price = 1000, label = 'Bath' },
{ object = 'prop_toilet_brush_01', price = 1000, label = 'Brush' },
{ object = 'prop_toilet_roll_01', price = 1000, label = 'Toilet rol' },
{ object = 'prop_toilet_roll_02', price = 1000, label = 'Toilet rol 2' },
{ object = 'prop_toilet_shamp_01', price = 1000, label = 'Shampoo' },
{ object = 'prop_toilet_shamp_02', price = 1000, label = 'Shampoo 2' }
},
},
medical = {
label = 'Medical',
items = {
{ object = 'v_med_barrel', price = 750, label = 'Barrel' },
{ object = 'v_med_apecrate', price = 750, label = 'Ape Crate' },
{ object = 'v_med_apecratelrg', price = 750, label = 'Ape Crate Large' },
{ object = 'v_med_bed1', price = 750, label = 'Bed 1' },
{ object = 'v_med_bed2', price = 750, label = 'Bed 2' },
{ object = 'v_med_bedtable', price = 750, label = 'Bed Table' },
{ object = 'v_med_bench1', price = 750, label = 'Bench 1' },
{ object = 'v_med_bench2', price = 750, label = 'Bench 2' },
{ object = 'v_med_benchcentr', price = 750, label = 'Bench Center' },
{ object = 'v_med_benchset1', price = 750, label = 'Bench Set' },
{ object = 'v_med_bigtable', price = 750, label = 'Big Table' },
{ object = 'v_med_bin', price = 150, label = 'Bin' },
{ object = 'v_med_centrifuge1', price = 750, label = 'Centrifuge' },
{ object = 'v_med_cooler', price = 750, label = 'Cooler' },
{ object = 'v_med_cor_ceilingmonitor', price = 750, label = 'Monitor' },
{ object = 'v_med_cor_autopsytbl', price = 750, label = 'Autopsy Table' },
{ object = 'v_med_cor_cembin', price = 750, label = 'Bin' },
{ object = 'v_med_cor_cemtrolly2', price = 750, label = 'Trolley' },
{ object = 'v_med_cor_chemical', price = 750, label = 'Chem' },
{ object = 'v_med_cor_emblmtable', price = 750, label = 'BLM Table' },
{ object = 'v_med_cor_fileboxa', price = 750, label = 'File Box' },
{ object = 'v_med_cor_filingcab', price = 750, label = 'File Cab' },
{ object = 'v_med_cor_hose', price = 750, label = 'Hose' },
{ object = 'v_med_cor_largecupboard', price = 750, label = 'Large Cupboard' },
{ object = 'v_med_cor_lightbox', price = 750, label = 'Lightbox' },
{ object = 'v_med_cor_medstool', price = 750, label = 'Medstool' },
{ object = 'v_med_cor_minifridge', price = 750, label = 'Minifridge' },
{ object = 'v_med_cor_papertowels', price = 750, label = 'Papertowels' },
{ object = 'v_med_cor_photocopy', price = 750, label = 'Photocopy' },
{ object = 'v_med_cor_tvstand', price = 750, label = 'TV Stand' },
{ object = 'v_med_cor_wallunita', price = 750, label = 'Wall Unit' },
{ object = 'v_med_examlight', price = 750, label = 'Exam light' },
{ object = 'v_med_gastank', price = 750, label = 'Gas Tank' },
{ object = 'v_med_hazmatscan', price = 750, label = 'Hazmat Scan' },
{ object = 'v_med_hospheadwall1', price = 750, label = 'Head Wall' },
{ object = 'v_med_hospseating1', price = 750, label = 'Seating' },
{ object = 'v_med_hosptable', price = 750, label = 'Hosp Table' },
{ object = 'v_med_latexgloveboxblue', price = 50, label = 'Glove Box' },
{ object = 'v_med_medwastebin', price = 750, label = 'Wastebin' },
{ object = 'v_med_oscillator3', price = 750, label = 'Oscillator' },
{ object = 'prop_ld_health_pack', price = 100, label = 'Health Pack' },
},
},
walldecoration = {
label = 'Wall Deco',
items = {
{ object = 'apa_p_h_acc_artwalll_02', price = 1000, label = 'Painting whit marks' },
{ object = 'v_ind_cs_toolboard', price = 500, label = 'Tools' },
{ object = 'apa_mp_stilts_bed_art', price = 300, label = '3d art' },
{ object = 'ex_office_swag_paintings03', price = 1000, label = 'Paintingen Ground' },
{ object = 'ex_mp_h_acc_artwallm_03', price = 750, label = 'abstract Painting' },
{ object = 'ex_p_h_acc_artwallm_04', price = 750, label = 'abstract Painting 2' },
{ object = 'ex_p_h_acc_artwalll_01', price = 1250, label = 'abstract Painting Big' },
{ object = 'apa_p_h_acc_artwalll_03', price = 750, label = 'abstract Painting 3' },
{ object = 'ex_mp_h_acc_artwallm_02', price = 750, label = 'abstract Painting 4' },
{ object = 'ex_p_h_acc_artwallm_03', price = 750, label = 'abstract Painting 5' },
{ object = 'apa_mp_stilts_a_study_pics', price = 500, label = 'Paintingen' },
{ object = 'apa_mp_h_acc_artwallm_02', price = 750, label = 'abstract Painting 6' },
{ object = 'apa_mp_h_acc_artwalll_02', price = 750, label = 'abstract Painting 7' },
{ object = 'apa_mp_h_acc_artwallm_04', price = 750, label = 'abstract Painting 8' },
{ object = 'prop_dart_bd_cab_01', price = 250, label = 'Dartboard' },
{ object = 'prop_dart_bd_01', price = 250, label = 'Dartboard 2' },
{ object = 'hei_heist_acc_artwalll_01', price = 250, label = 'wall deco 1' },
{ object = 'hei_heist_acc_artgolddisc_01', price = 250, label = 'wall deco 2' },
{ object = 'hei_heist_acc_artgolddisc_02', price = 250, label = 'wall deco 3' },
{ object = 'hei_heist_acc_artgolddisc_03', price = 250, label = 'wall deco 4' },
{ object = 'hei_heist_acc_artgolddisc_04', price = 250, label = 'wall deco 5' },
{ object = 'v_ilev_ra_doorsafe', price = 250, label = 'Luxury deco' }
},
},
}