Jump to content

Paul

Members
  • Posts

    43
  • Joined

  • Last visited

  • Days Won

    1

Community Answers

  1. Paul's post in [ Solved ]Modified Hourly Points was marked as the answer   
    - script hourly_point_main -1,{ OnInit: .npc_name$ = strnpcinfo(3); .reward_minutes = 60; .target_map$ = "prontera"; // Restrict to Prontera bindatcmd("check", .npc_name$ + "::OnAtcommand"); end; OnAtcommand: dispbottom("Accumulated " + #daily_minute_count); end; OnPCLoginEvent: addtimer(.reward_minutes * 60000, .npc_name$ + "::OnUpdate"); end; OnUpdate: deltimer(.npc_name$ + "::OnUpdate"); addtimer(.reward_minutes * 60000, .npc_name$ + "::OnUpdate"); // Check if the player is in Prontera if (strcharinfo(3) != .target_map$) { end; } if (checkvending() & 2) { end; } #daily_minute_count += .reward_minutes; switch(#daily_minute_count) { case 60: case 120: case 180: case 240: case 300: case 360: case 420: #CASHPOINT += 1; getitem 677,1; break; case 480: #CASHPOINT += 1; getitem 677,1; #daily_minute_count = 0; // Reset counter after 8 hours break; } } Features:
    ✅ Works only in Prontera (prontera map)
    ✅ Rewards every hour up to 8 hours
    ✅ Prevents vending abuse
    ✅ Resets counter after 8 hours
  2. Paul's post in Help me sir/ma'am packet problem was marked as the answer   
    It said your chatserversql server is 45 . 
    go to your \src\map\mmo.h
     
    and find this line.
     
    #define packet 
     
    if your client is 12-04-07 then 
     
    #define packet 12-04-07 
     
    and fix your clientinfo.xml It should be match with the packet version,
     
    if your packet version is 45, then it should be the same as
     
    version at your clientinfo.xml
     
    Done
  3. Paul's post in help about custom headgear was marked as the answer   
    How can i find it sir? I mean where is it located?

    WOWWOWOWOWOWOWOWOWOWOWOWOWOOW I GOT IT IT FIXED NOW.................... CHANGING THE CLIENT TO 2014 mwahahahahahahaha ty anyway thanks for the reply. i will locked this..
×
×
  • Create New...