Jump to content

Forshaken

Members
  • Posts

    148
  • Joined

  • Last visited

1 Follower

About Forshaken

  • Birthday March 13

Profile Information

  • Gender
    Male
  • Location
    United Arab Emirates
  • Interests
    Dota Gaming and Ragnarok Development

Recent Profile Visitors

3216 profile views

Forshaken's Achievements

Marin

Marin (5/15)

  • Conversation Starter
  • Dedicated
  • Reacting Well
  • First Post
  • Collaborator

Recent Badges

21

Reputation

2

Community Answers

  1. t try to put end; function on each Pick# function
  2. Try to put the script instead on Script: | node try to put it on EquipScript: |
  3. change this .mhp[.@dupid] = strmobinfo(4,2411); to .mhp[.@dupid] = strmobinfo(4,1313);
  4. You can just make a script for it bro - script at_pk -1,{ OnInit: bindatcmd "pk",strnpcinfo(3)+"::OnDo",0,99; end; OnDo: if(!pk_mode){ atcommand "@pk"; set pk_mode,1; hateffect,HATEFF_ID,TRUE; }else{ atcommand "@pk"; set pk_mode,0; hateffect,HATEFF_ID,FALSE; } end; OnPCLogoutEvent: if(pk_mode){ atcommand "@pk"; set pk_mode,0; hateffect,HATEFF_ID,FALSE; } end; }
  5. or if you just want to remove it for normal player's perspective just follow the code below /// Amount of currently online players, reply to /w /who (ZC_USER_COUNT). /// 00c2 <count>.L void clif_user_count(map_session_data* sd, int count) { + if(sd->group_id >= 1) { // you can adjust the group id here int fd = sd->fd; WFIFOHEAD(fd,packet_len(0xc2)); WFIFOW(fd,0) = 0xc2; WFIFOL(fd,2) = count; WFIFOSET(fd,packet_len(0xc2)); + } }
  6. no problem . Good luck on your dev journey!
  7. dont forget to compile after applying the changes
  8. oh my bad, go to clif.cpp and find /// Amount of currently online players, reply to /w /who (ZC_USER_COUNT). /// 00c2 <count>.L void clif_user_count(map_session_data* sd, int count) { int fd = sd->fd; WFIFOHEAD(fd,packet_len(0xc2)); WFIFOW(fd,0) = 0xc2; WFIFOL(fd,2) = count; WFIFOSET(fd,packet_len(0xc2)); } Change to /// Amount of currently online players, reply to /w /who (ZC_USER_COUNT). /// 00c2 <count>.L void clif_user_count(map_session_data* sd, int count) { /* int fd = sd->fd; WFIFOHEAD(fd,packet_len(0xc2)); WFIFOW(fd,0) = 0xc2; WFIFOL(fd,2) = count; WFIFOSET(fd,packet_len(0xc2)); */ }
  9. just go to your truck folder conf/groups.yml and comment who command or set it to false.
  10. what you mean is when player activates his pk mode and aura will be attached on him/her?
  11. it cant be applied to script command, you have to apply the bonus straight to the item and if you want to exclusively apply the bonus when it is equipped on their right hand you can try this if ( getequipid(EQI_HAND_R) ) { bonus bAllStats,100; }
  12. yes cause latest rev is now using status.yml
×
×
  • Create New...