Jump to content
  • 0

anyone update this script


Bringer

Question


  • Group:  Members
  • Topic Count:  162
  • Topics Per Day:  0.04
  • Content Count:  748
  • Reputation:   47
  • Joined:  03/12/14
  • Last Seen:  

prontera,145,150,5 script Sample 56,{
if( BaseLevel == 99 && reward_lvl == 0 && Upper && .count < 100 ){
if( .count < 3 )
getitem 714,1;
if( .count < 100 )
getitem 7227,1;
reward_lvl++;
.count++;
announce "Congratulations " + strcharinfo(0) + " for receiving the level 99 reward, there are only "+ (100-.count) +" rewards left!",0;
}
else if ( reward_lvl ) {
mes "you already get your reward";
close;
}
else if ( BaseLevel != 99 ) {
mes "you are not lvl 99";
close;
}
end;
OnInit:
.count = query_sql( "select `value` from `global_reg_value` where `str`= 'reward_lvl'", .@value );
if ( .count >99 ) end;
// limit to 127 players online here
.@size = query_sql( "select `account_id` from `char` where `char_id` not in ( select `char_id` from `global_reg_value` where `str`= 'reward_lvl' ) and `online`=1", .@account_id );
for ( .@i = 0; .@i < .@size; .@i++ ) {
attachrid .@account_id[.@i];
if ( reward_lvl ) {
.count++;
if ( .count >99 ) end;
}
}
end;
}

can anyone update the sql i got error in

global_reg_value

Edited by Emistry
codebox
Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  51
  • Topics Per Day:  0.01
  • Content Count:  452
  • Reputation:   35
  • Joined:  12/18/14
  • Last Seen:  

query_sql "select FROM `main`.`char_reg_num` WHERE `key`='reward_lvl'";

No idea if that works, but give it a try.

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...