Jump to content
  • 0

requesting for hat effect ater reach max level


Enoch

Question


  • Group:  Members
  • Topic Count:  27
  • Topics Per Day:  0.02
  • Content Count:  69
  • Reputation:   0
  • Joined:  10/21/19
  • Last Seen:  

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
Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  78
  • Topics Per Day:  0.03
  • Content Count:  436
  • Reputation:   167
  • Joined:  12/12/17
  • Last Seen:  

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`

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  27
  • Topics Per Day:  0.02
  • Content Count:  69
  • Reputation:   0
  • Joined:  10/21/19
  • Last Seen:  

23 minutes ago, pajodex said:

Try changing `OnInit` to `OnPCLoginEvent`

not working i wonder why 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  27
  • Topics Per Day:  0.02
  • Content Count:  69
  • Reputation:   0
  • Joined:  10/21/19
  • Last Seen:  

no errors just not working try yourself to know

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  78
  • Topics Per Day:  0.03
  • Content Count:  436
  • Reputation:   167
  • Joined:  12/12/17
  • Last Seen:  

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.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  27
  • Topics Per Day:  0.02
  • Content Count:  69
  • Reputation:   0
  • Joined:  10/21/19
  • Last Seen:  

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

Link to comment
Share on other sites

  • -1

  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  102
  • Reputation:   6
  • Joined:  03/02/18
  • Last Seen:  

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;
}

Link to comment
Share on other sites

  • -1

  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  102
  • Reputation:   6
  • Joined:  03/02/18
  • Last Seen:  

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;
}

 

Link to comment
Share on other sites

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.

×
×
  • Create New...