I am trying to print quotes to the console for my botmapper but if I use any of these
I getprintln "level.jvbot_weapon_priority[" """ "m1 garand" """ "] = " (getcvar wep_grand)
println "level.jvbot_weapon_priority[" "''" "springfield '03 sniper" "''" "] = " (getcvar wep_springfield)
println "level.jvbot_weapon_priority[" "'" "'" "thompson" "'" "'" "] = " (getcvar wep_thompson)
What looks like " in that are 2 single quotes ' ' and it looks spaced out in the script like thislevel.jvbot_weapon_priority["""m1 garand"""] = 10
level.jvbot_weapon_priority[''springfield '03 sniper''] = 20
level.jvbot_weapon_priority[''thompson''] = 40
level.jvbot_weapon_priority[' 'thompson' '] = 40
if I try to use 3 quotes """ it prints all 3 sets of quotes

