SRO X-Y -> /Warp (Generator)

11/02/2019 17:55 _Moxxi_#1
Hello epvp community.

im looking for a program that calculate the X-Y
to a /warp code this would be useful for console users to host events.
Or talk with players to solve problems at a private place nobody else can go since u only can visit the area by warping to it.

Could also be useful for fake console players
so they can make cool screenshots at cool places.

Does someone in this community have a program like this, and would be able to share it?
11/04/2019 01:54 JellyBitz#2
Do you think this can be usefull at your case?
[Only registered and activated users can see links. Click Here To Register...]

It marks at map your coordinates (X,Y or X,Y,Z,Region) specified but it's not going to give you any details about the conversion.

I could add that details if it's what you looking for.. Anyways would be in a few days, I'm busy at the moment.
11/27/2019 20:16 _Moxxi_#3
X Y generator

In case somebody still need it: :thinking: feel free to download it and use it.

How It Works:

Example u go to any location in silkroad u open the program put ur X & Y cordinations than hit convert and u get the /warp code u can use in console.
[Only registered and activated users can see links. Click Here To Register...]
11/28/2019 15:41 JellyBitz#4
You could go to places that you don't even know using [Only registered and activated users can see links. Click Here To Register...]
12/29/2019 14:22 _Moxxi_#5
Hello epvp community

i wanted to share some warp places.
Found with the program from #JellyBitz so a big thanks to him.

Warps:

#1 Place: IceWreck
/warp 28643 1507 0 1505

#2 Place: Hall Of Worship
/warp 31980 1392 0 1712

#3 Place: Qin Shi Tomb Mountain Secret Water Place
/warp 25774 1830 0 1013

#4 Place: Burglar Town
/warp 24758 770 0 930

#5 Place: Togui City
/warp 31717 1020 0 1340

If u are looking for a place u need the /warp code from feel free to ask in this topic and i will post it below.
If u have any cool /warp code place feel free to post them in this topic below.

Thankyou.
12/31/2019 17:46 OsOs0123#6
Can u make a guide for “fake console” so I can test the warp codes?
01/01/2020 19:13 _Moxxi_#7
Fake Console Guide "Works On Every Private Server" For /Warp.

Guide:
In this guide u will replace the "Help" window with the "GM console" window.
1. Make sure you closed the Game Guide in your SRO settings. This is needed because otherwise the client may crash when trying to open a specific help section. Do not try to open the "help" window clicking the "?" icon appearing sometimes on Low-Level-characters, this will result in a crash.
2. Set the "Help" window shortcut key on a key that is neither number nor a letter.
3. Extract the \resinfo\ folder from the media.pk2 file
4. Open "ginterface.txt" file with "NotePad".
5. Search for "GDR_GAMEGUIDE:CIFGameGuide".
6. Replace "CIFGameGuide" with "CIFConsole".
7. Save the file, import it to your Media.pk2 again.
8. Launch ur silkroad server.
9. Now, if you press the "Help" shortcut key the Console will be opened.
10. Finished, enjoy console!

NOTE:Be careful! While entering text, shortcut keys you press will be used!

Example: Console.
[Only registered and activated users can see links. Click Here To Register...]

Download Files Needed:
01/01/2020 20:52 mindo1020#8
Heey do u have /warp code for dw/jg cave?
01/01/2020 22:47 _Moxxi_#9
Quote:
Originally Posted by mindo1020 View Post
Heey do u have /warp code for dw/jg cave?
yes :rolleyes:

JG /warp -32766 253 300 6922
DW /warp -32767 -310 300 310

enjoy ;)
06/26/2021 22:26 altarboy#10
Quote:
Originally Posted by jaysun181 View Post
X Y generator

In case somebody still need it: :thinking: feel free to download it and use it.

How It Works:

Example u go to any location in silkroad u open the program put ur X & Y cordinations than hit convert and u get the /warp code u can use in console.
[Only registered and activated users can see links. Click Here To Register...]
Hi jaysun181! this is not working. do you have a web based one perhaps?
07/02/2021 17:38 OKeks#11
You can use the formula below and put it into excel:
Code:
	
	local $xpos=mod($x,192)*10
	local $zpos=mod($z,192)*10
	local $xsec=($x-$xpos/10)/192+135
	local $zsec=($z-$zpos/10)/192+92
	local $region=$zsec*256+$xsec
	local $string="/warp "&$region&" "&$xpos&" 0 "&$zpos
mod -> modulo function
12/11/2023 18:23 kotsh23#12
there is anyone have sqlserver formula to change Database cords
Region , X , Y, Z to Ingame X, Y ?

DB:
24490, 1051 , 86, 1917

Game:
X: 6825, Y: 767
01/29/2024 23:57 kaka20315#13
any one have /warp for jangan and constantinople events circle please ?
02/01/2024 03:25 JellyBitz#14
Quote:
Originally Posted by kotsh23 View Post
is anyone have sqlserver formula to change Database cords; Region , X , Y, Z to Ingame X, Y ?
It's mostly shifting bits and sorting out.
PHP Code:
-- Values
DECLARE @_@RegionId INT 24490
DECLARE @_@PosX FLOAT 1051
DECLARE @_@PosZ FLOAT 1917

-- Calculations begins..
IF @
_@RegionId 0
    BEGIN
        
-- Fix negatives
        SET 
@_@RegionId += 0xFFFF
    END
DECLARE @_@IsDungeon INT = @_@RegionId POWER(2,15/* shift 15 bits right */

/* WorldMap */
IF @_@IsDungeon 0
    BEGIN
        
DECLARE @_@RX INT = @_@RegionId 0xFF /* Shift out first 8 bits */
        
DECLARE @_@RY INT = (@_@RegionId 0x7F00) / POWER(2,8/* Shift out last 7 bits and shift 8 bits right */
        
DECLARE @_@X FLOAT = (@_@RX 135) * 192 + @_@PosX 0.1
        
DECLARE @_@Y FLOAT = (@_@RY 92) * 192 + @_@PosZ 0.1
        
-- Result
        SELECT 
'Regional Map' AS 'Type', @_@AS 'X', @_@AS 'Y'CONCAT('...',@_@RX,'x',@_@RY,'.ddj') AS 'Img Path'
    
END
/* Dungeon */
ELSE
    
BEGIN
        
DECLARE @_@Layer INT = @_@RegionId 0xFF /* Shift out first 8 bits */
        
DECLARE @_@DRX INT = (CAST(@_@PosX AS INT) / 1920) + 128 /* Find RX from Dungeon and fix it for negatives */
        
IF @_@PosX 0 SET @_@DRX -= 1
        
DECLARE @_@DRY INT = (CAST(@_@PosZ AS INT) / 1920) + 128 /* Find RY from Dungeon and fix it for negatives */
        
IF @_@PosZ 0 SET @_@DRY -= 1
        
-- Result
        SELECT 
'Dungeon Map' AS 'Type',
        CASE -- 
Check layer id
            WHEN 
@_@Layer 0 THEN 'Donwhang Stone Cave'
            
WHEN @_@Layer 1 THEN 'Tomb of Qui-Shin [B6]'
            
WHEN @_@Layer 2 THEN 'Tomb of Qui-Shin [B5]'
            
WHEN @_@Layer 3 THEN 'Tomb of Qui-Shin [B4]'
            
WHEN @_@Layer 4 THEN 'Tomb of Qui-Shin [B3]'
            
WHEN @_@Layer 5 THEN 'Tomb of Qui-Shin [B2]'
            
WHEN @_@Layer 6 THEN 'Tomb of Qui-Shin [B1]'
            
WHEN @_@Layer 11 THEN 'Sanctum of Blue Eye'
            
WHEN @_@Layer 12 THEN 'Sanctum of Anubis'
            
WHEN @_@Layer 13 THEN 'Sanctum of Isis'
            
WHEN @_@Layer 14 THEN 'Sanctum of Haroeris'
            
WHEN @_@Layer 15 THEN 'Sanctum of Seth'
            
WHEN @_@Layer 16 THEN 'Temple'
            
WHEN @_@Layer 17 THEN 'Cave of Meditation'
            
WHEN @_@Layer 18 THEN 'Flame Mountain'
            
WHEN @_@Layer 19 THEN  'The Earth''s Room'
            
WHEN @_@Layer 20 THEN  'Yuno''s Room'
            
WHEN @_@Layer 21 THEN  'Jupiter''s Room'
            
WHEN @_@Layer 22 THEN  'Zealots Hideout'
            
WHEN @_@Layer 23 THEN  'GM''s Room'
            
WHEN @_@Layer 24 THEN  'Prison'
            
WHEN @_@Layer 25 THEN  'Kalia''s Hideout'
            
ELSE CONCAT('Unknown (',@_@Layer,')')
        
END AS 'Map Layer',
        @
_@PosX AS 'X', @_@PosZ AS 'Y'CONCAT('...',@_@DRX,'x',@_@DRY,'.ddj') AS 'Img Path'
    
END 
Quote:
Originally Posted by kaka20315 View Post
any one have /warp for jangan and constantinople events circle please ?
[Only registered and activated users can see links. Click Here To Register...]
PHP Code:
/warp 25001 340 1000 1255 
[Only registered and activated users can see links. Click Here To Register...]
PHP Code:
/warp 22454 1150 1000 645 
04/27/2024 13:50 andrezinh#15
Quote:
Originally Posted by _Moxxi_ View Post
Hello epvp community.

im looking for a program that calculate the X-Y
to a /warp code this would be useful for console users to host events.
Or talk with players to solve problems at a private place nobody else can go since u only can visit the area by warping to it.

Could also be useful for fake console players
so they can make cool screenshots at cool places.

Does someone in this community have a program like this, and would be able to share it?
Is this still working?