Jump to content

rootKid

Members
  • Posts

    83
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by rootKid

  1. Exception Type: 0xc0000005
    eax: 0x0000000b ebx: 0x0000002d
    ecx: 0x0444018b edx: 0x00000001
    esi: 0x30074a66 edi: 0x2bc348de
    ebp: 0x0018f50c esp: 0x0018f4ac
    stack 0018f4ac - 0018f8ac
    0018F4AC : E8 F6 18 00 20 3E 1A 03 FE 48 07 30 00 00 00 00
    0018F4BC : 00 00 00 00 45 74 E5 19 70 9C 3E 85 66 37 D0 F1
    0018F4CC : 00 00 00 00 F0 2E 79 98 A4 56 68 40 17 7A E7 8D
    0018F4DC : A4 56 68 40 E7 54 9E 15 00 00 00 00 DE 48 C3 2B
    0018F4EC : E5 FF BB FB 18 00 00 00 18 F6 18 00 20 3E 1A 03
    0018F4FC : 34 F5 18 00 06 00 00 00 93 00 00 00 8B 01 44 04
    0018F50C : CC F5 18 00 35 29 54 00 04 00 00 00 38 02 00 00
    0018F51C : 2D 00 00 00 66 4A 07 30 04 00 00 00 C0 3D 1A 03
    0018F52C : 00 00 2E 03 44 F8 18 00 00 00 00 00 00 00 00 00
    0018F53C : 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    0018F54C : 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    0018F55C : 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    0018F56C : 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    0018F57C : 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    0018F58C : 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    0018F59C : 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    Launch Info
    0000 0000 0000 0000 0000 0000 0000 0000
    0000 0000 0000 0000 0000 0000 0000 0000
    0000 0000 0000 0000 0000 0000 0000 0000
    0000 0000 0000 0000 0000 0000 0000 0000
    Job : Assassin Cross
    

    Could someone help me, what is causing this error? I try to log in-game, so I would choose my character and then as the game is loading I error. It's random, so certain characters would work and others won't.

  2. How do I go about hosting a server on a dedicated server? I do not want to use 'pre-made' hosts like AsuraHosting/SystemInPlace. I purchase the VPS and then what? How does the whole procedure work? Can someone experienced in this field let me know detailed instructions. The server I'm looking to host will be SQL. Which host do you recommend?

  3. I keep getting this error.

    Error
    An error occurred while trying to process your request.
    Please try contacting an administrator: admin@localhost
    

    Also in my error log I've had this going on for awhile now..

    PHP Warning:  Cannot load module 'XCache' because conflicting module 'eAccelerator' is already loaded in Unknown on line 0
    

    I made the $showExceptions true but that's all that still shows up in the error. This happened after someone donated through the CP. What could be the issue?

    It seems like nothing I change in the config files are taking affect..

  4. When an item with the script itemskill is used to cast a skill, the requirement for the skill isnt needed. So for example if the itemskill lets you cast FCP it wouldnt consume a glistening coat. Can someone me modify the item script itemskill so its like itemskill,<skill id>,<skill lv>,<skill requirement on/off 1/0> ?

  5. I'm trying to make an item that lets you use Warp Portal, but it doesn't seem to be working. My current item script contains

    itemskill "AL_WARP",4;
    

    I use the item and it lets me select the location to place the portal, but as soon as I select the location nothing happens.

    What could be the problem?

  6. In clif.c, search for:

       if (battle_config.pet_no_gvg && map_flag_gvg(sd->bl.m) && sd->pd)
       {    //Return the pet to egg. [skotlex]
        clif_displaymessage(sd->fd, "Pets are not allowed in Guild Wars.");
        pet_menu(sd, 3); //Option 3 is return to egg.
       }
    

    Add below:

       if(map_flag_gvg(sd->bl.m) && sd->hd) {
        clif_displaymessage(sd->fd, "Homunculus are not allowed in Guild Wars.");
        merc_hom_vaporize(sd,0);
       }
    

    I've tried this but it didn't work, jeez can someone who is good with their SRC help already!? /hum

  7. Is there a script command to check if the player has a homunculus out? So lets say the players talks to the warper NPC, the NPC checks if the player has a Homunculus out before warping them and will not warp them if they have a Homunculus out.

  8. How would I go about making a mapflag to disable homunculus from a map or something like how pets get put back into their eggs in gvg maps option? So lets say you have your homunculus out, you warp to the specified map and in right when you enter that map your homunculus gets put away until you summon it again.

  9. Uhh thanks for the script VyLow but thats not what I'm looking for. I'm looking for a script where, lets say.. a guild won a guild related event, the prize is given to all of the members through a script. Let's make this a little easier.. is there an atcommand for such a thing?

×
×
  • Create New...