Skip to content
View in the app

A better way to browse. Learn more.

ResHax

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.
Help us keep the site running.

Copy and paste?

Featured Replies

  • Author
  • Localization

OwocekTV, posted Tue Apr 28, 2015 5:17 pm (4902)


Is there any function in QBMS script to copy from file some bits and paste them to other place or other file?
Something like 838286568
copy "28" or copy 0x4-0x5
if not, it would be really useful, thanks :D
  • Author
  • Localization

aluigi, posted Tue Apr 28, 2015 5:28 pm (4903)


The String command allows to manipulate strings and you can use something like:
Code:
set VAR string "838286568"
string VAR << 3
string VAR >> 4
print "%VAR%"
The operators of the String command are not intuitive but with some tests you can reach your result.
  • Author
  • Localization

OwocekTV, posted Tue Apr 28, 2015 5:30 pm (4905)


Oh thanks, It's works nicely!
Also, is there a command to put var into a new file?
  • Author
  • Localization

aluigi, posted Tue Apr 28, 2015 5:36 pm (4906)


Yes, quickbms has both "get" and "put" commands :)
I suggest you to use Put with a memory file to make things easier:
Code:
set VAR string "838286568"
string VAR string VAR >> 4
print "%VAR%"

log MEMORY_FILE 0 0 # initialize
putct VAR string -1 MEMORY_FILE # because put string adds also a 0x00 byte
put 0x0d byte MEMORY_FILE # carriage-return (optional)
put 0x0a byte MEMORY_FILE # line-feed (optional)

get SIZE asize MEMORY_FILE
log "dump.txt" 0 SIZE MEMORY_FILE
Guest
This topic is now closed to further replies.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.