Jump to content
  • 0

requesting for hat effect ater reach max level


Question

Posted (edited)

hi guys  im requesting hateffect after reaching max lvel i tried this but no luck 

-    script    LVL175    -1,{
OnInit:
    if(BaseLevel <= 175) { hateffect 170,true; }
    end;
}

Edited by Enoch

8 answers to this question

Recommended Posts

  • 0
Posted
4 hours ago, Enoch said:

hi guys  im requesting hateffect after reaching max lvel i tried this but no luck 

-    script    LVL175    -1,{
OnInit:
    if(BaseLevel <= 175) { hateffect 170,true; }
    end;
}

Try changing `OnInit` to `OnPCLoginEvent`

  • 0
Posted
2 hours ago, Enoch said:

not working i wonder why 

I can only assume it will only take effect when player is actually equipping an item. Therefore, this script command should work only when attached as an item script.

  • 0
Posted
2 hours ago, AceofSpades said:

try this 

-    script    Enoch   FAKE_NPC,{

OnPCLoginEvent:

    if(BaseLevel == 170)
        hateffect 1,true;
    end;
}

it's working but when you relog it disappeared though  can be back if you refresh or change map

  • -1
Posted
8 hours ago, Enoch said:

hi guys  im requesting hateffect after reaching max lvel i tried this but no luck 

-    script    LVL175    -1,{
OnInit:
    if(BaseLevel <= 175) { hateffect 170,true; }
    end;
}

try this 

-    script    Enoch   FAKE_NPC,{

OnPCLoginEvent:

    if(BaseLevel == 170)
        hateffect 1,true;
    end;
}

  • -1
Posted
7 minutes ago, Enoch said:

it's working but when you relog it disappeared though  can be back if you refresh or change map

try this one, i already @refresh or change map and still working

 

-    script    Enoch    FAKE_NPC,{

OnPCLoginEvent:

OnInit:
    if(BaseLevel == 120){
        hateffect 18,true;
    }
    end;
}

 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...