Emistry

[RO] SQL Mall 1.5

Oct 22nd, 2022
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 14.19 KB | Source Code | 0 0
  1. // https://rathena.org/board/topic/107660-r-sql-mall/
  2.  
  3. -   script  all_in_one_shop_main    -1,{
  4.    
  5.     // Shop NPC Name
  6.     function    func_ShopTypeName   {
  7.         switch (getarg(0, -1)) {
  8.             case IT_HEALING: return "Healing";
  9.             case IT_USABLE: return "";
  10.             case IT_ETC: return "Etc";
  11.             case IT_WEAPON: return "";
  12.             case IT_ARMOR: return "Armor";
  13.             case IT_CARD: return "Card";
  14.             case IT_PETEGG: return "Petegg";
  15.             case IT_PETARMOR: return "Petarmor";
  16.             case IT_AMMO: return "Ammo";
  17.             case IT_DELAYCONSUME: return "Delayconsume";
  18.             case IT_SHADOWGEAR: return "Shadowgear";
  19.             case IT_CASH: return "Cash";
  20.             default: return "Misc";
  21.         }
  22.     }
  23.    
  24.     // Shop NPC Sprite ID
  25.     function    func_ShopClassID    {
  26.         switch (getarg(0, -1)) {
  27.             case IT_HEALING: return -1;
  28.             case IT_USABLE: return 4_F_KAFRA2;
  29.             case IT_ETC: return 4_F_KAFRA3;
  30.             case IT_WEAPON: return 4_F_KAFRA4;
  31.             case IT_ARMOR: return 4_F_KAFRA5;
  32.             case IT_CARD: return 4_F_KAFRA6;
  33.             case IT_PETEGG: return 4_F_KAFRA7;
  34.             case IT_PETARMOR: return 4_F_KAFRA8;
  35.             case IT_AMMO: return 4_F_KAFRA9;
  36.             case IT_DELAYCONSUME: return 4_F_KAFRA2;
  37.             case IT_SHADOWGEAR: return 4_F_KAFRA5;
  38.             case IT_CASH: return -1;
  39.             default: return rand(-1, 4_F_KAFRA9);
  40.         }
  41.     }
  42.    
  43.     OnInit:
  44.         .is_renewal_db = 1;
  45.         .max_shop_item = 100;
  46.         .blacklist_item$ = "5001,5002,5003";
  47.        
  48.         sleep 1000; // delays
  49.         callsub(OnLoad, IT_HEALING);
  50.         callsub(OnLoad, IT_USABLE);
  51.         callsub(OnLoad, IT_ETC);
  52.         callsub(OnLoad, IT_WEAPON);
  53.         callsub(OnLoad, IT_ARMOR);
  54.         callsub(OnLoad, IT_CARD);
  55.         callsub(OnLoad, IT_PETEGG);
  56.         callsub(OnLoad, IT_PETARMOR);
  57.         callsub(OnLoad, IT_AMMO);
  58.         callsub(OnLoad, IT_DELAYCONSUME);
  59.         callsub(OnLoad, IT_SHADOWGEAR);
  60.         callsub(OnLoad, IT_CASH);
  61.         end;
  62.  
  63.     OnLoad:
  64.         .@type = getarg(0, -1);
  65.         .@type_name$ = func_ShopTypeName(.@type);
  66.        
  67.         .@npc = 1;
  68.         .@sql$ = "SELECT `id`, `weight`, `attack`, " + (.is_renewal_db ? "`magic_attack`" : "`attack`") + ", `slots`, `weapon_level`, `defense`, `equip_level_min`, `script`, `equip_script`, `unequip_script` "
  69.             + "FROM `" + (.is_renewal_db ? "item_db_re" : "item_db") + "` "
  70.             + "WHERE `type` = '"+escape_sql(.@type_name$)+"'";
  71.         if (.blacklist_item$ != "")
  72.             .@sql$ = .@sql$ + " AND `id` NOT IN ("+escape_sql(.blacklist_item$)+")";
  73.         .@sql$ = .@sql$ + " ORDER BY `name_english`";
  74.        
  75.         .@size = query_sql(.@sql$, .@id, .@weight, .@atk, .@matk, .@slot, .@weapon_level, .@defense, .@equip_level_min, .@script$, .@equip_script$, .@unequip_script$);
  76.        
  77.         if (.@size > 0) {
  78.             .@npc_count = (.@size / .max_shop_item);
  79.        
  80.             freeloop(1);
  81.             do {
  82.                 .@x = 0;
  83.                
  84.                 .@npc_shop_name$ = "Shop#t_"+.@type+"_"+.@npc;
  85.                 if (getmapxy(.@map$, .@map_x, .@map_y, BL_NPC, .@npc_shop_name$)) {
  86.                     errormes "SQL Mall - NPC not found - " + .@npc_shop_name$;
  87.                 }
  88.                 else {
  89.                     npcshopdelitem .@npc_shop_name$, 909;
  90.                        
  91.                     do {
  92.                         .@index = (.@npc * .max_shop_item + .@x);
  93.                         .@total_cost = 0;
  94.                        
  95.                         // cost calculations
  96.                         .@total_cost += ((.@weight[.@index] / 10) * 1000);
  97.                         .@total_cost += ((.@atk[.@index] / 100) * 5000);
  98.                         if (.is_renewal_db)
  99.                             .@total_cost += ((.@matk[.@index] / 100) * 5000);
  100.                         .@total_cost += (.@slots[.@index] * 3000);
  101.                         .@total_cost += (.@weapon_level[.@index] * 2000);
  102.                         .@total_cost += ((.@defense[.@index] / 10) * 1000);
  103.                         .@total_cost += ((.@equip_level_min[.@index] / 10) * 10000);
  104.                
  105.                         // effect count.
  106.                         .@total_cost += (countstr(.@script$[.@index], "bonus") * 1000);
  107.                         .@total_cost += (countstr(.@equip_script$[.@index], "bonus") * 1000);
  108.                         .@total_cost += (countstr(.@unequip_script$[.@index], "bonus") * 1000);
  109.                         .@total_cost += (countstr(.@unequip_script$[.@index], "heal") * 100);
  110.                         .@total_cost += (countstr(.@unequip_script$[.@index], "warp") * 1000);
  111.                        
  112.                         if (.@total_cost > 0)
  113.                             npcshopadditem .@npc_shop_name$, .@id[.@index], .@total_cost;
  114.                         .@x++;
  115.                         .@total_item_count++;
  116.                     } while (.@x < .max_shop_item && .@index < .@size);
  117.                     setnpcdisplay(.@npc_shop_name$, .@type_name$+" "+.@npc+"#t_"+.@type+"_"+.@npc, func_ShopClassID(.@type));
  118.                 }
  119.                 .@npc++;
  120.             } while (.@npc <= .@npc_count);
  121.             freeloop(0);
  122.            
  123.         }
  124.        
  125.         // Remove excessive NPC
  126.         while (!getmapxy(.@map$, .@map_x, .@map_y, BL_NPC, "Shop#t_"+.@type+"_"+.@npc) || .@npc <= .@npc_count) {
  127.             disablenpc "Shop#t_"+.@type+"_"+.@npc;
  128.             .@npc++;
  129.         }
  130.        
  131.         // debugmes "SQL Mall - " + func_ShopTypeName(.@type) + " - Loaded " + F_InsertComma(.@total_item_count) + " Item(s)";
  132.         return;
  133.  
  134. }
  135.  
  136.  
  137. // Add more if needed (follow the name and numbering)
  138.  
  139. prt_fild08,201,40,5 shop    Shop#t_0_1  -1,909:-1
  140. prt_fild08,202,40,5 shop    Shop#t_0_2  -1,909:-1
  141. prt_fild08,203,40,5 shop    Shop#t_0_3  -1,909:-1
  142. prt_fild08,204,40,5 shop    Shop#t_0_4  -1,909:-1
  143.  
  144. prt_fild08,201,42,5 shop    Shop#t_2_1  -1,909:-1
  145. prt_fild08,202,42,5 shop    Shop#t_2_2  -1,909:-1
  146. prt_fild08,203,42,5 shop    Shop#t_2_3  -1,909:-1
  147. prt_fild08,204,42,5 shop    Shop#t_2_4  -1,909:-1
  148. prt_fild08,205,42,5 shop    Shop#t_2_5  -1,909:-1
  149. prt_fild08,206,42,5 shop    Shop#t_2_6  -1,909:-1
  150. prt_fild08,207,42,5 shop    Shop#t_2_7  -1,909:-1
  151. prt_fild08,208,42,5 shop    Shop#t_2_8  -1,909:-1
  152. prt_fild08,209,42,5 shop    Shop#t_2_9  -1,909:-1
  153. prt_fild08,210,42,5 shop    Shop#t_2_10 -1,909:-1
  154.  
  155. prt_fild08,201,44,5 shop    Shop#t_3_1  -1,909:-1
  156. prt_fild08,202,44,5 shop    Shop#t_3_2  -1,909:-1
  157. prt_fild08,203,44,5 shop    Shop#t_3_3  -1,909:-1
  158. prt_fild08,204,44,5 shop    Shop#t_3_4  -1,909:-1
  159. prt_fild08,205,44,5 shop    Shop#t_3_5  -1,909:-1
  160. prt_fild08,206,44,5 shop    Shop#t_3_6  -1,909:-1
  161. prt_fild08,207,44,5 shop    Shop#t_3_7  -1,909:-1
  162. prt_fild08,208,44,5 shop    Shop#t_3_8  -1,909:-1
  163. prt_fild08,209,44,5 shop    Shop#t_3_9  -1,909:-1
  164. prt_fild08,210,44,5 shop    Shop#t_3_10 -1,909:-1
  165. prt_fild08,211,44,5 shop    Shop#t_3_11 -1,909:-1
  166. prt_fild08,212,44,5 shop    Shop#t_3_12 -1,909:-1
  167. prt_fild08,213,44,5 shop    Shop#t_3_13 -1,909:-1
  168. prt_fild08,214,44,5 shop    Shop#t_3_14 -1,909:-1
  169. prt_fild08,215,44,5 shop    Shop#t_3_15 -1,909:-1
  170. prt_fild08,216,44,5 shop    Shop#t_3_16 -1,909:-1
  171. prt_fild08,217,44,5 shop    Shop#t_3_17 -1,909:-1
  172. prt_fild08,218,44,5 shop    Shop#t_3_18 -1,909:-1
  173. prt_fild08,219,44,5 shop    Shop#t_3_19 -1,909:-1
  174. prt_fild08,220,44,5 shop    Shop#t_3_20 -1,909:-1
  175. prt_fild08,221,44,5 shop    Shop#t_3_21 -1,909:-1
  176. prt_fild08,222,44,5 shop    Shop#t_3_22 -1,909:-1
  177. prt_fild08,223,44,5 shop    Shop#t_3_23 -1,909:-1
  178. prt_fild08,224,44,5 shop    Shop#t_3_24 -1,909:-1
  179. prt_fild08,225,44,5 shop    Shop#t_3_25 -1,909:-1
  180. prt_fild08,226,44,5 shop    Shop#t_3_26 -1,909:-1
  181. prt_fild08,227,44,5 shop    Shop#t_3_27 -1,909:-1
  182. prt_fild08,228,44,5 shop    Shop#t_3_28 -1,909:-1
  183. prt_fild08,229,44,5 shop    Shop#t_3_29 -1,909:-1
  184.  
  185. prt_fild08,201,46,5 shop    Shop#t_4_1  -1,909:-1
  186. prt_fild08,202,46,5 shop    Shop#t_4_2  -1,909:-1
  187. prt_fild08,203,46,5 shop    Shop#t_4_3  -1,909:-1
  188. prt_fild08,204,46,5 shop    Shop#t_4_4  -1,909:-1
  189. prt_fild08,205,46,5 shop    Shop#t_4_5  -1,909:-1
  190. prt_fild08,206,46,5 shop    Shop#t_4_6  -1,909:-1
  191. prt_fild08,207,46,5 shop    Shop#t_4_7  -1,909:-1
  192. prt_fild08,208,46,5 shop    Shop#t_4_8  -1,909:-1
  193. prt_fild08,209,46,5 shop    Shop#t_4_9  -1,909:-1
  194. prt_fild08,210,46,5 shop    Shop#t_4_10 -1,909:-1
  195. prt_fild08,211,46,5 shop    Shop#t_4_11 -1,909:-1
  196. prt_fild08,212,46,5 shop    Shop#t_4_12 -1,909:-1
  197. prt_fild08,213,46,5 shop    Shop#t_4_13 -1,909:-1
  198. prt_fild08,214,46,5 shop    Shop#t_4_14 -1,909:-1
  199. prt_fild08,215,46,5 shop    Shop#t_4_15 -1,909:-1
  200. prt_fild08,216,46,5 shop    Shop#t_4_16 -1,909:-1
  201. prt_fild08,217,46,5 shop    Shop#t_4_17 -1,909:-1
  202. prt_fild08,218,46,5 shop    Shop#t_4_18 -1,909:-1
  203. prt_fild08,219,46,5 shop    Shop#t_4_19 -1,909:-1
  204. prt_fild08,220,46,5 shop    Shop#t_4_20 -1,909:-1
  205. prt_fild08,221,46,5 shop    Shop#t_4_21 -1,909:-1
  206. prt_fild08,222,46,5 shop    Shop#t_4_22 -1,909:-1
  207. prt_fild08,223,46,5 shop    Shop#t_4_23 -1,909:-1
  208. prt_fild08,224,46,5 shop    Shop#t_4_24 -1,909:-1
  209. prt_fild08,225,46,5 shop    Shop#t_4_25 -1,909:-1
  210. prt_fild08,226,46,5 shop    Shop#t_4_26 -1,909:-1
  211. prt_fild08,227,46,5 shop    Shop#t_4_27 -1,909:-1
  212. prt_fild08,228,46,5 shop    Shop#t_4_28 -1,909:-1
  213. prt_fild08,229,46,5 shop    Shop#t_4_29 -1,909:-1
  214. prt_fild08,230,46,5 shop    Shop#t_4_30 -1,909:-1
  215. prt_fild08,231,46,5 shop    Shop#t_4_31 -1,909:-1
  216. prt_fild08,232,46,5 shop    Shop#t_4_32 -1,909:-1
  217. prt_fild08,233,46,5 shop    Shop#t_4_33 -1,909:-1
  218. prt_fild08,234,46,5 shop    Shop#t_4_34 -1,909:-1
  219. prt_fild08,235,46,5 shop    Shop#t_4_35 -1,909:-1
  220. prt_fild08,236,46,5 shop    Shop#t_4_36 -1,909:-1
  221. prt_fild08,237,46,5 shop    Shop#t_4_37 -1,909:-1
  222. prt_fild08,238,46,5 shop    Shop#t_4_38 -1,909:-1
  223. prt_fild08,239,46,5 shop    Shop#t_4_39 -1,909:-1
  224. prt_fild08,240,46,5 shop    Shop#t_4_40 -1,909:-1
  225. prt_fild08,241,46,5 shop    Shop#t_4_41 -1,909:-1
  226. prt_fild08,242,46,5 shop    Shop#t_4_42 -1,909:-1
  227. prt_fild08,243,46,5 shop    Shop#t_4_43 -1,909:-1
  228. prt_fild08,244,46,5 shop    Shop#t_4_44 -1,909:-1
  229. prt_fild08,245,46,5 shop    Shop#t_4_45 -1,909:-1
  230. prt_fild08,246,46,5 shop    Shop#t_4_46 -1,909:-1
  231. prt_fild08,247,46,5 shop    Shop#t_4_47 -1,909:-1
  232. prt_fild08,248,46,5 shop    Shop#t_4_48 -1,909:-1
  233. prt_fild08,249,46,5 shop    Shop#t_4_49 -1,909:-1
  234. prt_fild08,240,46,5 shop    Shop#t_4_50 -1,909:-1
  235. prt_fild08,241,46,5 shop    Shop#t_4_51 -1,909:-1
  236. prt_fild08,242,46,5 shop    Shop#t_4_52 -1,909:-1
  237. prt_fild08,243,46,5 shop    Shop#t_4_53 -1,909:-1
  238. prt_fild08,244,46,5 shop    Shop#t_4_54 -1,909:-1
  239. prt_fild08,245,46,5 shop    Shop#t_4_55 -1,909:-1
  240. prt_fild08,246,46,5 shop    Shop#t_4_56 -1,909:-1
  241. prt_fild08,247,46,5 shop    Shop#t_4_57 -1,909:-1
  242. prt_fild08,248,46,5 shop    Shop#t_4_58 -1,909:-1
  243. prt_fild08,249,46,5 shop    Shop#t_4_59 -1,909:-1
  244.  
  245.  
  246. prt_fild08,201,48,5 shop    Shop#t_5_1  -1,909:-1
  247. prt_fild08,202,48,5 shop    Shop#t_5_2  -1,909:-1
  248. prt_fild08,203,48,5 shop    Shop#t_5_3  -1,909:-1
  249. prt_fild08,204,48,5 shop    Shop#t_5_4  -1,909:-1
  250. prt_fild08,205,48,5 shop    Shop#t_5_5  -1,909:-1
  251. prt_fild08,206,48,5 shop    Shop#t_5_6  -1,909:-1
  252. prt_fild08,207,48,5 shop    Shop#t_5_7  -1,909:-1
  253. prt_fild08,208,48,5 shop    Shop#t_5_8  -1,909:-1
  254. prt_fild08,209,48,5 shop    Shop#t_5_9  -1,909:-1
  255. prt_fild08,210,48,5 shop    Shop#t_5_10 -1,909:-1
  256. prt_fild08,211,48,5 shop    Shop#t_5_11 -1,909:-1
  257. prt_fild08,212,48,5 shop    Shop#t_5_12 -1,909:-1
  258. prt_fild08,213,48,5 shop    Shop#t_5_13 -1,909:-1
  259. prt_fild08,214,48,5 shop    Shop#t_5_14 -1,909:-1
  260. prt_fild08,215,48,5 shop    Shop#t_5_15 -1,909:-1
  261. prt_fild08,216,48,5 shop    Shop#t_5_16 -1,909:-1
  262. prt_fild08,217,48,5 shop    Shop#t_5_17 -1,909:-1
  263. prt_fild08,218,48,5 shop    Shop#t_5_18 -1,909:-1
  264. prt_fild08,219,48,5 shop    Shop#t_5_19 -1,909:-1
  265. prt_fild08,220,48,5 shop    Shop#t_5_20 -1,909:-1
  266. prt_fild08,221,48,5 shop    Shop#t_5_21 -1,909:-1
  267. prt_fild08,222,48,5 shop    Shop#t_5_22 -1,909:-1
  268. prt_fild08,223,48,5 shop    Shop#t_5_23 -1,909:-1
  269. prt_fild08,224,48,5 shop    Shop#t_5_24 -1,909:-1
  270. prt_fild08,225,48,5 shop    Shop#t_5_25 -1,909:-1
  271. prt_fild08,226,48,5 shop    Shop#t_5_26 -1,909:-1
  272. prt_fild08,227,48,5 shop    Shop#t_5_27 -1,909:-1
  273. prt_fild08,228,48,5 shop    Shop#t_5_28 -1,909:-1
  274. prt_fild08,229,48,5 shop    Shop#t_5_29 -1,909:-1
  275. prt_fild08,230,48,5 shop    Shop#t_5_30 -1,909:-1
  276. prt_fild08,231,48,5 shop    Shop#t_5_31 -1,909:-1
  277. prt_fild08,232,48,5 shop    Shop#t_5_32 -1,909:-1
  278. prt_fild08,233,48,5 shop    Shop#t_5_33 -1,909:-1
  279. prt_fild08,234,48,5 shop    Shop#t_5_34 -1,909:-1
  280. prt_fild08,235,48,5 shop    Shop#t_5_35 -1,909:-1
  281. prt_fild08,236,48,5 shop    Shop#t_5_36 -1,909:-1
  282. prt_fild08,237,48,5 shop    Shop#t_5_37 -1,909:-1
  283. prt_fild08,238,48,5 shop    Shop#t_5_38 -1,909:-1
  284. prt_fild08,239,48,5 shop    Shop#t_5_39 -1,909:-1
  285.  
  286. prt_fild08,201,50,5 shop    Shop#t_6_1  -1,909:-1
  287. prt_fild08,202,50,5 shop    Shop#t_6_2  -1,909:-1
  288. prt_fild08,203,50,5 shop    Shop#t_6_3  -1,909:-1
  289. prt_fild08,204,50,5 shop    Shop#t_6_4  -1,909:-1
  290. prt_fild08,205,50,5 shop    Shop#t_6_5  -1,909:-1
  291. prt_fild08,206,50,5 shop    Shop#t_6_6  -1,909:-1
  292. prt_fild08,207,50,5 shop    Shop#t_6_7  -1,909:-1
  293. prt_fild08,208,50,5 shop    Shop#t_6_8  -1,909:-1
  294. prt_fild08,209,50,5 shop    Shop#t_6_9  -1,909:-1
  295. prt_fild08,210,50,5 shop    Shop#t_6_10 -1,909:-1
  296. prt_fild08,211,50,5 shop    Shop#t_6_11 -1,909:-1
  297. prt_fild08,212,50,5 shop    Shop#t_6_12 -1,909:-1
  298. prt_fild08,213,50,5 shop    Shop#t_6_13 -1,909:-1
  299. prt_fild08,214,50,5 shop    Shop#t_6_14 -1,909:-1
  300. prt_fild08,215,50,5 shop    Shop#t_6_15 -1,909:-1
  301. prt_fild08,216,50,5 shop    Shop#t_6_16 -1,909:-1
  302. prt_fild08,217,50,5 shop    Shop#t_6_17 -1,909:-1
  303. prt_fild08,218,50,5 shop    Shop#t_6_18 -1,909:-1
  304. prt_fild08,219,50,5 shop    Shop#t_6_19 -1,909:-1
  305. prt_fild08,220,50,5 shop    Shop#t_6_20 -1,909:-1
  306. prt_fild08,221,50,5 shop    Shop#t_6_21 -1,909:-1
  307. prt_fild08,222,50,5 shop    Shop#t_6_22 -1,909:-1
  308. prt_fild08,223,50,5 shop    Shop#t_6_23 -1,909:-1
  309. prt_fild08,224,50,5 shop    Shop#t_6_24 -1,909:-1
  310. prt_fild08,225,50,5 shop    Shop#t_6_25 -1,909:-1
  311. prt_fild08,226,50,5 shop    Shop#t_6_26 -1,909:-1
  312. prt_fild08,227,50,5 shop    Shop#t_6_27 -1,909:-1
  313. prt_fild08,228,50,5 shop    Shop#t_6_28 -1,909:-1
  314. prt_fild08,229,50,5 shop    Shop#t_6_29 -1,909:-1
  315.  
  316. prt_fild08,201,52,5 shop    Shop#t_7_1  -1,909:-1
  317.  
  318. prt_fild08,201,54,5 shop    Shop#t_8_1  -1,909:-1
  319.  
  320. prt_fild08,201,56,5 shop    Shop#t_10_1 -1,909:-1
  321. prt_fild08,202,56,5 shop    Shop#t_10_2 -1,909:-1
  322.  
  323. prt_fild08,201,58,5 shop    Shop#t_11_1 -1,909:-1
  324. prt_fild08,202,58,5 shop    Shop#t_11_2 -1,909:-1
  325. prt_fild08,203,58,5 shop    Shop#t_11_3 -1,909:-1
  326. prt_fild08,204,58,5 shop    Shop#t_11_4 -1,909:-1
  327.  
  328. prt_fild08,201,60,5 shop    Shop#t_12_1 -1,909:-1
  329. prt_fild08,202,60,5 shop    Shop#t_12_2 -1,909:-1
  330. prt_fild08,203,60,5 shop    Shop#t_12_3 -1,909:-1
  331. prt_fild08,204,60,5 shop    Shop#t_12_4 -1,909:-1
  332. prt_fild08,205,60,5 shop    Shop#t_12_5 -1,909:-1
  333. prt_fild08,206,60,5 shop    Shop#t_12_6 -1,909:-1
  334. prt_fild08,207,60,5 shop    Shop#t_12_7 -1,909:-1
  335. prt_fild08,208,60,5 shop    Shop#t_12_8 -1,909:-1
  336. prt_fild08,209,60,5 shop    Shop#t_12_9 -1,909:-1
  337.  
  338. prt_fild08,201,62,5 shop    Shop#t_18_1 -1,909:-1
  339. prt_fild08,202,62,5 shop    Shop#t_18_2 -1,909:-1
  340. prt_fild08,203,62,5 shop    Shop#t_18_3 -1,909:-1
  341. prt_fild08,204,62,5 shop    Shop#t_18_4 -1,909:-1
  342. prt_fild08,205,62,5 shop    Shop#t_18_5 -1,909:-1
  343. prt_fild08,206,62,5 shop    Shop#t_18_6 -1,909:-1
  344. prt_fild08,207,62,5 shop    Shop#t_18_7 -1,909:-1
  345. prt_fild08,208,62,5 shop    Shop#t_18_8 -1,909:-1
  346. prt_fild08,209,62,5 shop    Shop#t_18_9 -1,909:-1
  347. prt_fild08,210,62,5 shop    Shop#t_18_10    -1,909:-1
  348. prt_fild08,211,62,5 shop    Shop#t_18_11    -1,909:-1
  349. prt_fild08,212,62,5 shop    Shop#t_18_12    -1,909:-1
  350. prt_fild08,213,62,5 shop    Shop#t_18_13    -1,909:-1
  351. prt_fild08,214,62,5 shop    Shop#t_18_14    -1,909:-1
  352. prt_fild08,215,62,5 shop    Shop#t_18_15    -1,909:-1
  353. prt_fild08,216,62,5 shop    Shop#t_18_16    -1,909:-1
  354. prt_fild08,217,62,5 shop    Shop#t_18_17    -1,909:-1
  355. prt_fild08,218,62,5 shop    Shop#t_18_18    -1,909:-1
  356. prt_fild08,219,62,5 shop    Shop#t_18_19    -1,909:-1
  357.  
Add Comment
Please, Sign In to add comment