![]() |
different map instances? - Printable Version +- SphereCommunity (https://forum.spherecommunity.net) +-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d) +--- Forum: General Help (/Forum-General-Help) +--- Thread: different map instances? (/Thread-different-map-instances) |
different map instances? - arka - 11-20-2016 02:08 AM Hey, I have seen this some time ago, i don't know how to explain it proper. How do i travel to the different instances of the world on the sphereserver. For example i stand at point 30,30 and there are npcs and dynamic items and such, there was something which lets you travel to the exact same spot but then there are only the statics and no npcs and dynamic items like a different instance. Iam asking caus i want to script an event where you enter a certain location and kill an npc and then get back, and so that more then one player can do it at the same time, i would like to use those different instances of the map. I have forgotten how that worked ![]() RE: different map instances? - pointhz - 11-20-2016 03:37 AM .go 30,30,0,10 where 10 is the map number RE: different map instances? - arka - 11-21-2016 03:44 AM maybe that is not what iam looking for, i dont mean a different map just the items/npc in the spot change and he is giving me those errors when i want to hop in or out a specfific map 18:42:*** commands 'go 4738,333,0,1'=1 18:42:ERROR:Unsupported map #10 specified. Auto-fixing that to 0. RE: different map instances? - pointhz - 11-25-2016 08:51 AM You need to add the maps first on sphere.ini // To activate ML-sized map #1 uncomment the next line //Map1=7168,4096,-1,-1 Map0=7168,4096,64,0,0 Map1=6144,4096,64,0,1 Map2=2304,1600,32,0,2 Map3=2560,2048,32,0,3 Map4=1448,1448,8,0,4 Map10=7168,4096,64,0,0 Map20=7168,4096,64,0,0 Map50=7168,4096,64,0,0 Map55=7168,4096,64,0,0 Map204=7168,4096,64,0,0 Something like that. RE: different map instances? - Kanibal - 11-25-2016 10:22 PM (11-25-2016 08:51 AM)pointhz Wrote: You need to add the maps first on sphere.ini And dont forget about spheretables Code: scripts/maps/sphere_map0.scp RE: different map instances? - arka - 11-30-2016 02:05 AM I mean something different, .go 30,30,0,0 is the normal map + static instance when i do .go 30,30,0,1 iam in the same map and static files, only the dynamic items and npc i placed in 30,30,0,0 are not there. I thought it is maybe possible to open up several of the same map and statics, just new instances where the dynamic items and npcs are different RE: different map instances? - Kanibal - 11-30-2016 02:53 AM (11-30-2016 02:05 AM)arka Wrote: iam in the same map and static files, only the dynamic items and npc i placed in 30,30,0,0 are not there. This is not the same map. Open UO folder and look at map0.mul and map1.mul files, they have the same size. (11-30-2016 02:05 AM)arka Wrote: I thought it is maybe possible to open up several of the same map and statics, just new instances where the dynamic items and npcs are different Copy map0.mul, statics0.mul and statics0.mul several times, then rename it to map10.mul, statics10.mul, staidx10.mul......mapX.mul,a and then change sphere.ini and spheretables.scp RE: different map instances? - arka - 11-30-2016 02:55 AM ahhh ok yeah that is a good idea, thank you ![]() |