[Share] ^^ Ammend Magic

Page 1 of 2 12 LastLast
Results 1 to 15 of 23
  1. #1
    FFVIII SeiferXIII is offline
    ModeratorRank
    Sep 2007 Join Date
    SomewhereLocation
    1,961Posts

    [Share] ^^ Ammend Magic

    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
    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 = 51,
        [ChaInfo].ChaSavePosX = -1,
        [ChaInfo].ChaSavePosY = -1,
        [ChaInfo].ChaSavePosZ = -1
        FROM INSERTED
        WHERE Inserted.ChaGuName = 'SaintB51F'
        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 by SeiferXIII; 04-04-09 at 02:54 AM.


  2. #2
    Account Upgraded | Title Enabled! icedbox2002 is offline
    MemberRank
    May 2008 Join Date
    California, USALocation
    276Posts

    Re: [Share] ^^ Ammend Magic

    Nice share!
    Thanks!
    Important Link!

  3. #3
    Valued Member volter is offline
    MemberRank
    Jan 2008 Join Date
    133Posts

    Re: [Share] ^^ Ammend Magic

    this is nice ^^ thnx

    can you make a trigger for adding stats like this?

  4. #4
    Quit lourence8 is offline
    MemberRank
    Oct 2006 Join Date
    PHILIPPINESLocation
    1,662Posts

    Re: [Share] ^^ Ammend Magic

    ahahahah

    nice one sir seifer


    i saw it in RanPDF

  5. #5
    FFVIII SeiferXIII is offline
    ModeratorRank
    Sep 2007 Join Date
    SomewhereLocation
    1,961Posts

    Re: [Share] ^^ Ammend Magic

    @lourence8
    hahaha i ask eifel to make me a script and of course he will try it in his server ^^ is it great huh wahaha :D

    @all
    np

  6. #6
    Alpha Member Jolin88 is offline
    MemberRank
    Aug 2007 Join Date
    EuropeLocation
    2,173Posts

    Re: [Share] ^^ Ammend Magic

    and I don't get any credits huh? Eifel got that idea by me in first place

  7. #7
    Quit lourence8 is offline
    MemberRank
    Oct 2006 Join Date
    PHILIPPINESLocation
    1,662Posts

    Re: [Share] ^^ Ammend Magic

    Quote Originally Posted by Jolin88 View Post
    and I don't get any credits huh? Eifel got that idea by me in first place

    originally, i see this idea on phoenixran, (jolin's server lately)
    did u read sir jolin?

    i think its redundant if u will also include in credits

    peace bro ^_^

  8. #8
    Alpha Member Jolin88 is offline
    MemberRank
    Aug 2007 Join Date
    EuropeLocation
    2,173Posts

    Re: [Share] ^^ Ammend Magic

    ok nvm

    but this should be changed :


    and [ChaInfo].ChaMoney > 1


    remove it, the code means you require 2 gold or higher to enter but its not consumed

    my actual script goes as follow :

    update chainfo set chasavemap = 35,chaguname = '' from inserted where inserted.chanum = chainfo.chanum and inserted.chaguname = 'B30'
    update chainfo set chasavemap = 36,chaguname = '' from inserted where inserted.chanum = chainfo.chanum and inserted.chaguname = 'B50'
    update chainfo set chasavemap = 37,chaguname = '' from inserted where inserted.chanum = chainfo.chanum and inserted.chaguname = 'B90'

  9. #9
    Omega Male Abry is offline
    MemberRank
    May 2008 Join Date
    4,500Posts

    Re: [Share] ^^ Ammend Magic

    Quote Originally Posted by icedbox2002 View Post
    Nice share!
    Thanks!
    Important Link!
    That's my line..

    Anyway, added to important links.. ;)

  10. #10
    Quit lourence8 is offline
    MemberRank
    Oct 2006 Join Date
    PHILIPPINESLocation
    1,662Posts

    Re: [Share] ^^ Ammend Magic

    not working in ep3?


    when i use my character alwys rollback T_T
    Last edited by lourence8; 03-04-09 at 03:23 AM.

  11. #11
    Account Upgraded | Title Enabled! AutoKill is offline
    MemberRank
    Apr 2008 Join Date
    Un-IdentifiedLocation
    262Posts

    Re: [Share] ^^ Ammend Magic

    hmmmm you can do more... by using amend... like money cheat, warp, and many more... all this is runing on my weak server

  12. #12
    Valued Member volter is offline
    MemberRank
    Jan 2008 Join Date
    133Posts

    Re: [Share] ^^ Ammend Magic

    we can also use this for adding stats like MU they use this amend..^^

  13. #13
    Account Upgraded | Title Enabled! icedbox2002 is offline
    MemberRank
    May 2008 Join Date
    California, USALocation
    276Posts

    Re: [Share] ^^ Ammend Magic

    Quote Originally Posted by MrAbry View Post
    That's my line..

    Anyway, added to important links.. ;)
    Ooppss.... Sorry!

  14. #14
    Account Upgraded | Title Enabled! AutoKill is offline
    MemberRank
    Apr 2008 Join Date
    Un-IdentifiedLocation
    262Posts

    Re: [Share] ^^ Ammend Magic

    You can use the amend also for reset stat

  15. #15
    FFVIII SeiferXIII is offline
    ModeratorRank
    Sep 2007 Join Date
    SomewhereLocation
    1,961Posts

    Re: [Share] ^^ Ammend Magic

    haha i forgot, put it in your 1st trigger (example REBORN trigger)

    remove this part of my trigger
    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
    and add on my RB Trigger on this part of your RB

    Code:
    AFTER UPDATE
    AS
    REMEMBER: if you will not combine your and my trigger, it will cause rollback ^_^
    ty to all np, sorry sir lourence


    @Jolin, i already credited u ^^ see above..



Page 1 of 2 12 LastLast

Advertisement