Advertisement
MythIncDragon

Untitled

Jan 14th, 2023 (edited)
1,999
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 0.49 KB | None | 0 0
  1. alias scene {
  2.   var %stubpath = e:\chats\scripts\scenes\
  3.   var %stubfile
  4.  
  5.   if ($1 == lair)   var %stubfile stubLair.mrc
  6.   else if ($1 == rain) var   %stubfile stubRain.mrc
  7.   else if ($1 == teacher) var %stubfile stubTeacher.mrc
  8.   else { echo error
  9.        return }
  10.  
  11.   var -l %fname = $(%stubpath) $+ $(%stubfile)
  12.   .load -rs %fname
  13.   pause 2
  14.   .printScene
  15.   .unload -rs %fname
  16. }
  17.  
  18. alias printScene {
  19.  
  20.   /say a bunch of stuff here outlining the scene
  21.  
  22. ; can I place an Unload here
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement