Jump to content

MonkeyCode

Community
  • Content Count

    344
  • Joined

  • Last visited

  • Days Won

    64

MonkeyCode last won the day on July 14 2023

MonkeyCode had the most liked content!

Community Reputation

453 Excellent

About MonkeyCode

  • Rank
    Sea Captain

Recent Profile Visitors

15,648 profile views

Single Status Update

See all updates by MonkeyCode

  1. hey bro can u show me the functions of rb 4 ? plz i have problem with luaeffect..... and the rb 2 said plz show ur proff , i delete all my data for the admiral cloak a big error , and now the npc are a fk error i need the all functions for all 2 

    1. MonkeyCode

      MonkeyCode

      Hello. I believe it is better to post all your questions using a thread. This is because - if I am not active, someone may help you or if I don't know the answer, maybe someone else may know. Not because I won't answer your question, but it is best if you receive answer quick than never.

       

      regarding to rb4, I have never seen any functions like it. Maybe original developers copied rb functions and replicated it.

       

      please explain more on admiral cloaks. Thanks.

    2. mariogt16

      mariogt16

      this is for function. lua ?

      function cha_timer(role, freq, time) 

      local cha = TurnToCha ( role ) 
          local cha_type = GetChaTypeID ( cha )
          local Cape_bg = GetChaItem ( role , 2 , 4  )
          local Cape_id = GetItemID ( Cape_bg )
          
          if Cape_id == 7990 and cha_type == 1 then
              local statelv = 1
              local statetime = 3600
              AddState ( role , role , STATE_CAPE1 , statelv , statetime )
              
          elseif Cape_id == 7990 and cha_type == 2 then
              local statelv = 1
              local statetime = 3600
              AddState ( role , role , STATE_CAPE2 , statelv , statetime )        

          elseif Cape_id == 7990 and cha_type == 3 then
              local statelv = 1
              local statetime = 3600
              AddState ( role , role , STATE_CAPE3 , statelv , statetime )        

          elseif Cape_id == 7990 and cha_type == 4 then
              local statelv = 1
              local statetime = 3600
              AddState ( role , role , STATE_CAPE4 , statelv , statetime )        
          else
              local statelv_cape1 = GetChaStateLv ( role , STATE_CAPE1 )
              if statelv_cape1~=0 then
                  RemoveState ( role , STATE_CAPE1 ) 
              end
              local statelv_cape2 = GetChaStateLv ( role , STATE_CAPE2 )
              if statelv_cape2~=0 then
                  RemoveState ( role , STATE_CAPE2 ) 
              end
              local statelv_cape3 = GetChaStateLv ( role , STATE_CAPE3 )
              if statelv_cape3~=0 then
                  RemoveState ( role , STATE_CAPE3 ) 
              end
              local statelv_cape4 = GetChaStateLv ( role , STATE_CAPE4 )
              if statelv_cape4~=0 then
                  RemoveState ( role , STATE_CAPE4 ) 
              end
          end

      end
      function cloak.lua(filename,text)
         local file = GetResPath('script/extension/database/cloak/'..filename..".txt")

        if(fileexists(file) ~= false) then
          
          LogFile = io.open(file,'a')
          LogFile:write("["..os.date().."]/t"..text.."/n")
          LogFile:close()
          end    
          
      end

    3. mariogt16

      mariogt16

      answer mi plz i have problems now xD

    4. Show next comments  3 more
×
×
  • Create New...