- Joined
- Sep 16, 2007
- Messages
- 1,205
- Reaction score
- 544
i take some help with our co-devz with this kind of magic in-game hahaha
originally, i see this idea on phoenixran, (jolin's server lately)
Here it is,
Once you type the 'SaintB51F', you will be warped there after you relogin..
Execute this on your MSSQL
If you want to add another map, juz copy paste that trigger on same query and then change the following below
51 = Map Code
SaintB51F = The Word that you will put on the Ammend
use your common sense
Credits: Eifelzoecker, Jolin88, Crypticword(denverporia), marck
originally, i see this idea on phoenixran, (jolin's server lately)
Here it is,
Once you type the 'SaintB51F', you will be warped there after you relogin..
Execute this on your MSSQL
Code:
USE [RanGame1]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER TRIGGER [dbo].[Auto_Map] ON [dbo].[ChaInfo]
AFTER UPDATE
AS
BEGIN
UPDATE [ChaInfo] SET [ChaInfo].ChaSaveMap = [COLOR=Red][B]51[/B][/COLOR],
[ChaInfo].ChaSavePosX = -1,
[ChaInfo].ChaSavePosY = -1,
[ChaInfo].ChaSavePosZ = -1
FROM INSERTED
WHERE Inserted.ChaGuName = '[COLOR=RoyalBlue][B]SaintB51F[/B][/COLOR]'
and [ChaInfo].ChaMoney > 1
and [ChaInfo].ChaLevel > 1
and [ChaInfo].ChaNum = Inserted.ChaNum
and [ChaInfo].UserNum = Inserted.UserNum
END
If you want to add another map, juz copy paste that trigger on same query and then change the following below
51 = Map Code
SaintB51F = The Word that you will put on the Ammend
use your common sense

Credits: Eifelzoecker, Jolin88, Crypticword(denverporia), marck
Last edited: