Guest User

Untitled

a guest
Dec 10th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. fayon,90,125,5 script Sample 757,{
  2. if( getguildname(getcharid(2)) == .Guild$ ){
  3. getitem .Item,.Amount;
  4. set .Guild$,"";
  5. mes "here's your reward.";
  6. }else{
  7. mes "Sorry there is nothing you can claim here.";
  8. }
  9. close;
  10.  
  11. OnWhisperGlobal:
  12. if( getgmlevel() >= 99 ){
  13. if( getitemname(atoi(@whispervar1$)) != "null" && atoi(@whispervar1$) > 0 ){
  14. set .Guild$,@whispervar0$;
  15. set .Item,atoi(@whispervar1$);
  16. set .Amount,atoi(@whispervar2$);
  17. dispbottom "[ Guild Assigned : "+.Guild$+" | Item : "+getitemname(.Item)+" | Amount : "+.Amount+" ]";
  18. }else{
  19. dispbottom "[ Invalid Setup ] : GuildName#ItemID#Amount";
  20. }
  21. }
  22. end;
  23. }
Add Comment
Please, Sign In to add comment